transcendental-lisp/pom.xml

258 lines
7.9 KiB
XML
Raw Normal View History

2018-03-16 20:44:00 -04:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2018-01-20 08:34:31 -05:00
2017-03-15 13:37:39 -04:00
<modelVersion>4.0.0</modelVersion>
2018-01-20 08:34:31 -05:00
2018-01-21 14:33:52 -05:00
<groupId>com.gitlab.mike-cifelli</groupId>
2017-03-15 13:37:39 -04:00
<artifactId>transcendental-lisp</artifactId>
<version>1.2.1</version>
2018-01-20 08:34:31 -05:00
2018-03-18 11:39:01 -04:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2018-10-20 09:01:45 -04:00
<kotlin.version>1.2.71</kotlin.version>
2018-08-11 10:29:59 -04:00
<junit5.version>5.2.0</junit5.version>
2018-10-21 08:34:19 -04:00
<skipTests>false</skipTests>
2018-03-18 11:39:01 -04:00
</properties>
2018-01-21 14:33:52 -05:00
2018-03-18 11:39:01 -04:00
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
2018-03-18 17:42:28 -04:00
2017-03-15 13:37:39 -04:00
<plugins>
<plugin>
2018-01-21 14:33:52 -05:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
2018-03-18 11:39:01 -04:00
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<jvmTarget>1.8</jvmTarget>
</configuration>
</plugin>
2018-03-18 17:57:09 -04:00
<!-- TODO - remove when everything is converted to kotlin -->
2018-01-21 14:33:52 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2017-03-15 13:37:39 -04:00
<artifactId>maven-compiler-plugin</artifactId>
2018-01-21 14:33:52 -05:00
<version>3.7.0</version>
2018-03-18 11:39:01 -04:00
<executions>
<!-- Replacing default-compile as it is treated specially by maven -->
<execution>
<id>default-compile</id>
<phase>none</phase>
</execution>
<!-- Replacing default-testCompile as it is treated specially by maven -->
<execution>
<id>default-testCompile</id>
<phase>none</phase>
</execution>
<execution>
<id>java-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>java-test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
2017-03-15 13:37:39 -04:00
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2018-01-20 08:34:31 -05:00
2018-01-21 14:33:52 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
2018-03-18 17:42:28 -04:00
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit5.version}</version>
</dependency>
2018-03-18 17:57:09 -04:00
<!-- TODO - remove when all test cases converted to junit 5 -->
2018-03-18 17:42:28 -04:00
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit5.version}</version>
</dependency>
</dependencies>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
2018-01-21 14:33:52 -05:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
2018-01-21 15:02:01 -05:00
<archive>
2018-01-21 14:33:52 -05:00
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-shade-plugin</artifactId>-->
<!--<version>3.2.0</version>-->
<!--<executions>-->
<!--<execution>-->
<!--<phase>package</phase>-->
<!--<goals>-->
<!--<goal>shade</goal>-->
<!--</goals>-->
<!--<configuration>-->
<!--<transformers>-->
<!--<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">-->
<!--<mainClass>application.LispMain</mainClass>-->
<!--</transformer>-->
<!--</transformers>-->
<!--</configuration>-->
<!--</execution>-->
<!--</executions>-->
<!--</plugin>-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>
application.LispMain
</mainClass>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
2017-03-15 13:37:39 -04:00
</plugins>
</build>
2018-01-20 08:34:31 -05:00
2017-03-15 13:37:39 -04:00
<dependencies>
2018-03-18 11:39:01 -04:00
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin.version}</version>
</dependency>
2017-11-18 10:50:55 -05:00
<dependency>
<groupId>com.googlecode.lanterna</groupId>
<artifactId>lanterna</artifactId>
<version>3.0.0</version>
</dependency>
2018-01-21 14:33:52 -05:00
<dependency>
<groupId>io.github.classgraph</groupId>
<artifactId>classgraph</artifactId>
<version>4.4.7</version>
</dependency>
2018-03-18 11:39:01 -04:00
<dependency>
2018-03-18 17:42:28 -04:00
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.9.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit5.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit5.version}</version>
2018-03-18 11:39:01 -04:00
<scope>test</scope>
</dependency>
2018-03-18 17:57:09 -04:00
<!-- TODO - remove when test cases all converted to junit 5 and assertj-->
2017-03-15 13:37:39 -04:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
2018-01-21 14:33:52 -05:00
2017-03-15 13:37:39 -04:00
<dependency>
<groupId>org.fitnesse</groupId>
<artifactId>fitnesse</artifactId>
2018-09-23 11:20:56 -04:00
<version>20180127</version>
2017-03-15 13:37:39 -04:00
<scope>test</scope>
</dependency>
2018-01-20 08:34:31 -05:00
2017-03-23 16:14:26 -04:00
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-rules</artifactId>
2018-10-03 19:09:50 -04:00
<version>1.18.0</version>
2017-03-23 16:14:26 -04:00
<scope>test</scope>
</dependency>
2017-03-15 13:37:39 -04:00
</dependencies>
2018-01-20 08:34:31 -05:00
2017-03-15 13:37:39 -04:00
</project>