Skip to content

Commit 290b4c2

Browse files
committed
Introduce underscore-lodash plugin 1.0.
1 parent c82b57e commit 290b4c2

File tree

3 files changed

+128
-0
lines changed

3 files changed

+128
-0
lines changed

lodash-plugin/pom-central.xml

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
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-lodash</artifactId>
7+
<packaging>jar</packaging>
8+
<version>1.0</version>
9+
<name>Lodash plugin for underscore-java</name>
10+
<description>The lodash plugin for underscore-java</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/issues</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.lodash.$</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+
<goal>test-jar</goal>
80+
</goals>
81+
</execution>
82+
</executions>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>2.10.1</version>
88+
<executions>
89+
<execution>
90+
<id>attach-sources</id>
91+
<goals>
92+
<goal>jar</goal>
93+
<goal>test-jar</goal>
94+
</goals>
95+
</execution>
96+
</executions>
97+
</plugin>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-gpg-plugin</artifactId>
101+
<version>1.4</version>
102+
<executions>
103+
<execution>
104+
<id>sign-artifacts</id>
105+
<phase>verify</phase>
106+
<goals>
107+
<goal>sign</goal>
108+
</goals>
109+
</execution>
110+
</executions>
111+
</plugin>
112+
</plugins>
113+
</build>
114+
<dependencies>
115+
<dependency>
116+
<groupId>com.github.javadev</groupId>
117+
<artifactId>underscore</artifactId>
118+
<version>1.4</version>
119+
</dependency>
120+
<dependency>
121+
<groupId>junit</groupId>
122+
<artifactId>junit</artifactId>
123+
<version>4.3.1</version>
124+
<scope>test</scope>
125+
</dependency>
126+
</dependencies>
127+
128+
</project>
84.2 KB
Binary file not shown.

underscore-1.4.jar

65.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)