forked from fleipold/jproc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
89 lines (86 loc) · 2.9 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
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.buildobjects</groupId>
<artifactId>jproc</artifactId>
<packaging>jar</packaging>
<name>jproc</name>
<version>VERSION</version>
<description>Library for launching external processes and managing input and output.</description>
<url>https://github.com/fleipold/jproc</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/fleipold/jproc</url>
<connection>[email protected]:fleipold/jproc.git</connection>
</scm>
<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<developers>
<developer>
<id>fleipold</id>
<name>Felix Leipold</name>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.buildobjects</groupId>
<artifactId>docufier-plugin</artifactId>
<version>0.0.2</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>docufy</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>.</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>