Skip to content

Commit

Permalink
added sources to pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Fashionablylatte committed Jul 29, 2020
1 parent 1d00031 commit 2f2613d
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 2 deletions.
72 changes: 71 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,23 @@
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>org.lichess</groupId>
<artifactId>scalachess_2.13</artifactId>
<artifactId>scalachess</artifactId>
<packaging>jar</packaging>
<description>scalachess</description>
<version>9.2.2</version>
<name>scalachess</name>
<organization>
<name>org.lichess</name>
</organization>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Fashionablylatte Apache Maven Packages</name>
<url>https://maven.pkg.github.com/Fashionablylatte/scalachess</url>
</repository>
</distributionManagement>

<dependencies>
<dependency>
<groupId>org.scala-lang</groupId>
Expand Down Expand Up @@ -63,4 +72,65 @@
<layout>default</layout>
</repository>
</repositories>

<!-- Build section -->
<build>
<sourceDirectory>src/main/scala</sourceDirectory>
<testSourceDirectory>src/test/scala</testSourceDirectory>
<plugins>
<plugin>
<!-- see http://davidb.github.com/scala-maven-plugin -->
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>4.4.0</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
<configuration>
<args>
<arg>-dependencyfile</arg>
<arg>${project.build.directory}/.scala_dependencies</arg>
</args>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<!-- Tests will be run with scalatest-maven-plugin instead -->
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.0</version>
<configuration>
<reportPlugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.2</version>
</plugin>
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>4.4.0</version>
<configuration>
<jvmArgs>
<jvmArg>-Xms1G</jvmArg>
<jvmArg>-Xmx2G</jvmArg>
</jvmArgs>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion scalachess_2.13.iml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="scala-sdk-2.13.2" level="application" />
<orderEntry type="library" name="Maven: org.scala-lang:scala-library:2.13.2" level="project" />
<orderEntry type="library" name="Maven: org.scala-lang.modules:scala-parser-combinators_2.13:1.1.2" level="project" />
<orderEntry type="library" name="Maven: org.scalaz:scalaz-core_2.13:7.2.30" level="project" />
Expand All @@ -24,6 +25,5 @@
<orderEntry type="library" scope="TEST" name="Maven: org.scalaz:scalaz-concurrent_2.13:7.2.28" level="project" />
<orderEntry type="library" name="Maven: com.github.ornicar:scalalib_2.13:6.8" level="project" />
<orderEntry type="library" name="Maven: joda-time:joda-time:2.10.6" level="project" />
<orderEntry type="library" name="scala-sdk-2.13.2" level="application" />
</component>
</module>

0 comments on commit 2f2613d

Please sign in to comment.