forked from kohsuke/args4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
54 lines (51 loc) · 1.91 KB
/
pom.xml
File metadata and controls
54 lines (51 loc) · 1.91 KB
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>args4j</groupId>
<artifactId>args4j-site</artifactId>
<version>2.0.31-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>args4j-maven-plugin-example</artifactId>
<packaging>jar</packaging>
<name>Args4j Maven Plugin Example</name>
<description>Example of running the maven plugin</description>
<prerequisites>
<maven>2.0</maven>
</prerequisites>
<inceptionYear>2011</inceptionYear>
<build>
<plugins>
<plugin>
<groupId>org.kohsuke.args4j</groupId>
<artifactId>args4j-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>usage</goal>
</goals>
<configuration>
<sourceFiles>
<sourceFile>org/kohsuke/args4j/maven/Example.java</sourceFile>
<sourceFile>../../../../args4j-tools/src/org/kohsuke/args4j/apt/Main.java</sourceFile>
<sourceFile>../../../../args4j/examples/SampleAnt.java</sourceFile>
<sourceFile>../../../../args4j/examples/SampleMain.java</sourceFile>
<sourceFile>../../../../args4j/examples/SampleStarter.java</sourceFile>
</sourceFiles>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>args4j</groupId>
<artifactId>args4j</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>