-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
101 lines (100 loc) · 3.88 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.anc.maven</groupId>
<artifactId>groovy-parent-pom</artifactId>
<version>1.5.1</version>
</parent>
<groupId>org.anc.lapps.galaxy</groupId>
<artifactId>tool-conf-editor</artifactId>
<version>1.0.1</version>
<name>ToolConf Editory</name>
<description>A Groovy DSL for modifying Galaxy's tool_conf.xml file(s).</description>
<inceptionYear>2016</inceptionYear>
<url>https://github.com/oanc/tool-conf-editor</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/oanc/tool-conf-editor</url>
<connection>scm:git:https://github.com/oanc/tool-conf-editor.git</connection>
<developerConnection>scm:git:https://github.com/oanc/tool-conf-editor.git</developerConnection>
</scm>
<issueManagement>
<url>https://github.com/oanc/tool-conf-editor/issues</url>
<system>GitHub issues</system>
</issueManagement>
<build>
<finalName>ToolConfEditor</finalName>
<plugins>
<plugin>
<groupId>org.anc.maven.plugins</groupId>
<artifactId>anc-maven-plugin</artifactId>
<version>1.0.7</version>
<executions>
<execution>
<id>version-file</id>
<phase>generate-resources</phase>
<goals>
<goal>version</goal>
</goals>
</execution>
<execution>
<id>version-class</id>
<phase>generate-sources</phase>
<goals>
<goal>version-class</goal>
</goals>
<configuration>
<package>org.anc.lapps.galaxy</package>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<finalName>ToolConfEditor-${project.version}</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<mainClass>org.anc.lapps.galaxy.ToolConfEditor</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
<type>jar</type>
</dependency>
</dependencies>
</project>