-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule-template-pom.xml
42 lines (42 loc) · 1.36 KB
/
module-template-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
<project>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.google.gdata</groupId>
<artifactId>gdata-java-client</artifactId>
<version></version>
</parent>
<artifactId></artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description></description>
<dependencies></dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>default-jar</id>
<configuration>
<archive>
<manifestSections>
<manifestSection>
<name></name>
<manifestEntries>
<Specification-Title></Specification-Title>
<Specification-Version></Specification-Version>
<Specification-Vendor>Google Inc.</Specification-Vendor>
<Implementation-Title></Implementation-Title>
<Implementation-Version></Implementation-Version>
<Implementation-Vendor>Google Inc.</Implementation-Vendor>
</manifestEntries>
</manifestSection>
</manifestSections>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>