|
@@ -0,0 +1,168 @@
|
|
|
+<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">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <groupId>HintCO</groupId>
|
|
|
+ <artifactId>HintCO</artifactId>
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
+ <name>HintCO</name>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>6</maven.compiler.source>
|
|
|
+ <maven.compiler.target>1.6</maven.compiler.target>
|
|
|
+ </properties>
|
|
|
+
|
|
|
+ <repositories>
|
|
|
+ <repository>
|
|
|
+ <id>seasar</id>
|
|
|
+ <url>https://www.seasar.org/maven/maven2/</url>
|
|
|
+ </repository>
|
|
|
+ <repository>
|
|
|
+ <id>mvnCentral</id>
|
|
|
+ <url>http://central.maven.org/maven2/</url>
|
|
|
+ </repository>
|
|
|
+ </repositories>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>junit</groupId>
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
+ <version>4.12</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse</groupId>
|
|
|
+ <artifactId>equinox-app</artifactId>
|
|
|
+ <version>3.5.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.xtend</groupId>
|
|
|
+ <artifactId>org.eclipse.xtend.lib</artifactId>
|
|
|
+ <version>2.16.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.eclipse.xtext/org.eclipse.xtext.xbase.lib -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.xtext</groupId>
|
|
|
+ <artifactId>org.eclipse.xtext.xbase.lib</artifactId>
|
|
|
+ <version>2.16.0</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <sourceDirectory>src</sourceDirectory>
|
|
|
+ <testSourceDirectory>test</testSourceDirectory>
|
|
|
+ <resources>
|
|
|
+ <resource>
|
|
|
+ <directory>src</directory>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*.java</exclude>
|
|
|
+ </excludes>
|
|
|
+ </resource>
|
|
|
+ <resource>
|
|
|
+ <directory>xtend-gen</directory>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*.java</exclude>
|
|
|
+ </excludes>
|
|
|
+ </resource>
|
|
|
+ </resources>
|
|
|
+ <testResources>
|
|
|
+ <testResource>
|
|
|
+ <directory>test</directory>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*.java</exclude>
|
|
|
+ </excludes>
|
|
|
+ </testResource>
|
|
|
+ </testResources>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-dependency-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>copy-dependencies</id>
|
|
|
+ <phase>prepare-package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>copy-dependencies</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
+ <overWriteReleases>false</overWriteReleases>
|
|
|
+ <overWriteSnapshots>false</overWriteSnapshots>
|
|
|
+ <overWriteIfNewer>true</overWriteIfNewer>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.eclipse.xtend</groupId>
|
|
|
+ <artifactId>xtend-maven-plugin</artifactId>
|
|
|
+ <version>2.16.0</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>compile</goal>
|
|
|
+ <goal>xtend-install-debug-info</goal>
|
|
|
+ <goal>testCompile</goal>
|
|
|
+ <goal>xtend-test-install-debug-info</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ <configuration>
|
|
|
+ <outputDirectory>xtend-gen-maven</outputDirectory>
|
|
|
+ <overWrite>true</overWrite>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ <!-- <plugin> -->
|
|
|
+ <!-- <artifactId>maven-compiler-plugin</artifactId> -->
|
|
|
+ <!-- <version>3.8.0</version> -->
|
|
|
+ <!-- <configuration> -->
|
|
|
+ <!-- <source>1.8</source> -->
|
|
|
+ <!-- <target>1.8</target> -->
|
|
|
+ <!-- </configuration> -->
|
|
|
+ <!-- </plugin> -->
|
|
|
+
|
|
|
+ <!-- <plugin> -->
|
|
|
+ <!-- <groupId>org.apache.maven.plugins</groupId> -->
|
|
|
+ <!-- <artifactId>maven-jar-plugin</artifactId> -->
|
|
|
+ <!-- <version>3.1.1</version> -->
|
|
|
+ <!-- <configuration> -->
|
|
|
+ <!-- <archive> -->
|
|
|
+
|
|
|
+ <!-- <manifestFile>${project.basedir}/META-INF/MANIFEST.MF</manifestFile> -->
|
|
|
+ <!-- <manifest> -->
|
|
|
+ <!-- <mainClass>ua.ansymo.hintco.Blah</mainClass> -->
|
|
|
+ <!-- </manifest> -->
|
|
|
+ <!-- </archive> -->
|
|
|
+ <!-- </configuration> -->
|
|
|
+
|
|
|
+ <!-- </plugin> -->
|
|
|
+
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>single</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <archive>
|
|
|
+ <manifestFile>${project.basedir}/META-INF/MANIFEST.MF</manifestFile>
|
|
|
+ </archive>
|
|
|
+ <descriptorRefs>
|
|
|
+ <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
+ </descriptorRefs>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+</project>
|