Skip to content

Commit 13eb626

Browse files
committed
Add pom.xml for the maven central repository.
1 parent e110377 commit 13eb626

File tree

1 file changed

+121
-0
lines changed

1 file changed

+121
-0
lines changed

pom-central.xml

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.github.javadev</groupId>
6+
<artifactId>underscore</artifactId>
7+
<packaging>jar</packaging>
8+
<version>1.0</version>
9+
<name>java port of Underscore.js</name>
10+
<description>The java port of Underscore.js</description>
11+
<url>https://github.com/javadev/underscore-java</url>
12+
13+
<developers>
14+
<developer>
15+
<name>Valentyn Kolesnikov</name>
16+
</developer>
17+
</developers>
18+
19+
<licenses>
20+
<license>
21+
<name>The MIT License</name>
22+
<url>http://opensource.org/licenses/MIT</url>
23+
<distribution>repo</distribution>
24+
</license>
25+
</licenses>
26+
27+
<scm>
28+
<connection>scm:git:git://github.com/javadev/underscore-java.git</connection>
29+
<developerConnection>scm:git:git://github.com/javadev/underscore-java.git</developerConnection>
30+
<url>https://github.com/javadev/underscore-java</url>
31+
</scm>
32+
33+
<properties>
34+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35+
</properties>
36+
37+
<ciManagement>
38+
<system>Travis CI</system>
39+
<url>https://travis-ci.org/javadev/underscore-java</url>
40+
</ciManagement>
41+
42+
<issueManagement>
43+
<system>GitHub Issues</system>
44+
<url>https://github.com/javadev/underscore-java</url>
45+
</issueManagement>
46+
47+
<build>
48+
<plugins>
49+
<plugin>
50+
<groupId>org.apache.maven.plugins</groupId>
51+
<artifactId>maven-compiler-plugin</artifactId>
52+
<version>2.3.2</version>
53+
<configuration>
54+
<source>1.6</source>
55+
<target>1.6</target>
56+
<encoding>UTF-8</encoding>
57+
</configuration>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-jar-plugin</artifactId>
62+
<version>2.4</version>
63+
<configuration>
64+
<archive>
65+
<manifest>
66+
<mainClass>com.github.underscore._</mainClass>
67+
</manifest>
68+
</archive>
69+
</configuration>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-source-plugin</artifactId>
74+
<executions>
75+
<execution>
76+
<id>attach-sources</id>
77+
<goals>
78+
<goal>jar</goal>
79+
</goals>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-javadoc-plugin</artifactId>
86+
<version>2.10.1</version>
87+
<executions>
88+
<execution>
89+
<id>attach-sources</id>
90+
<goals>
91+
<goal>jar</goal>
92+
</goals>
93+
</execution>
94+
</executions>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-gpg-plugin</artifactId>
99+
<version>1.4</version>
100+
<executions>
101+
<execution>
102+
<id>sign-artifacts</id>
103+
<phase>verify</phase>
104+
<goals>
105+
<goal>sign</goal>
106+
</goals>
107+
</execution>
108+
</executions>
109+
</plugin>
110+
</plugins>
111+
</build>
112+
<dependencies>
113+
<dependency>
114+
<groupId>junit</groupId>
115+
<artifactId>junit</artifactId>
116+
<version>4.3.1</version>
117+
<scope>test</scope>
118+
</dependency>
119+
</dependencies>
120+
121+
</project>

0 commit comments

Comments
 (0)