|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>org.nuvlr</groupId> |
| 5 | + <artifactId>Nuvl</artifactId> |
| 6 | + <packaging>jar</packaging> |
| 7 | + <version>0.1</version> |
| 8 | + <name>Nuvl</name> |
| 9 | + <url>https://github.com/jefft0/nuvl</url> |
| 10 | + |
| 11 | + <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>org.scalatest</groupId> |
| 14 | + <artifactId>scalatest_2.12</artifactId> |
| 15 | + <version>3.0.1</version> |
| 16 | + <scope>test</scope> |
| 17 | + </dependency> |
| 18 | + <dependency> |
| 19 | + <groupId>junit</groupId> |
| 20 | + <artifactId>junit</artifactId> |
| 21 | + <version>4.7</version> |
| 22 | + <scope>test</scope> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>org.scala-lang</groupId> |
| 26 | + <artifactId>scala-reflect</artifactId> |
| 27 | + <version>2.12.0</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>org.scala-lang</groupId> |
| 31 | + <artifactId>scala-library</artifactId> |
| 32 | + <version>2.12.0</version> |
| 33 | + </dependency> |
| 34 | + </dependencies> |
| 35 | + |
| 36 | + <build> |
| 37 | + <plugins> |
| 38 | + <plugin> |
| 39 | + <groupId>net.alchim31.maven</groupId> |
| 40 | + <artifactId>scala-maven-plugin</artifactId> |
| 41 | + <version>3.2.2</version> |
| 42 | + <configuration> |
| 43 | + <recompileMode>incremental</recompileMode> |
| 44 | + <useZincServer>true</useZincServer> |
| 45 | + </configuration> |
| 46 | + <executions> |
| 47 | + <execution> |
| 48 | + <id>compile</id> |
| 49 | + <goals> |
| 50 | + <goal>compile</goal> |
| 51 | + <goal>testCompile</goal> |
| 52 | + </goals> |
| 53 | + </execution> |
| 54 | + <execution> |
| 55 | + <id>attach-javadocs</id> |
| 56 | + <goals> |
| 57 | + <goal>doc</goal> |
| 58 | + <goal>doc-jar</goal> |
| 59 | + </goals> |
| 60 | + </execution> |
| 61 | + <execution> |
| 62 | + <goals> |
| 63 | + <goal>doc</goal> |
| 64 | + </goals> |
| 65 | + <phase>site</phase> |
| 66 | + </execution> |
| 67 | + </executions> |
| 68 | + </plugin> |
| 69 | + <plugin> |
| 70 | + <groupId>org.apache.maven.plugins</groupId> |
| 71 | + <artifactId>maven-surefire-plugin</artifactId> |
| 72 | + <version>2.12</version> |
| 73 | + <configuration> |
| 74 | + <includes> |
| 75 | + <include>**/*Suite.class</include> |
| 76 | + <include>**/*Test.class</include> |
| 77 | + <include>**/*Tests.class</include> |
| 78 | + <include>**/*Spec.class</include> |
| 79 | + <include>**/*Specs.class</include> |
| 80 | + </includes> |
| 81 | + </configuration> |
| 82 | + </plugin> |
| 83 | + </plugins> |
| 84 | + </build> |
| 85 | +</project> |
0 commit comments