2018-01-20 08:34:31 -05: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">
|
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
|
|
|
<groupId>com.gitlab</groupId>
|
2017-03-15 13:37:39 -04:00
|
|
|
<artifactId>transcendental-lisp</artifactId>
|
2018-01-20 08:34:31 -05:00
|
|
|
<version>1.2.0</version>
|
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
|
|
|
<testSourceDirectory>test</testSourceDirectory>
|
2018-01-21 10:32:55 -05:00
|
|
|
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>lisp/lang</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<directory>test</directory>
|
|
|
|
<excludes>
|
|
|
|
<exclude>**/*.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<transformers>
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
<mainClass>main.LispMain</mainClass>
|
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
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-20 08:34:31 -05:00
|
|
|
|
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-20 08:34:31 -05:00
|
|
|
|
2017-11-18 10:50:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.fitnesse</groupId>
|
|
|
|
<artifactId>fitnesse</artifactId>
|
|
|
|
<version>20161106</version>
|
|
|
|
<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>
|
|
|
|
<version>1.16.1</version>
|
|
|
|
<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
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2018-01-20 08:34:31 -05:00
|
|
|
|
2017-03-15 13:37:39 -04:00
|
|
|
</project>
|