Skip to content

Commit fc58625

Browse files
committed
Sync with underscore-java.
1 parent 4676ba5 commit fc58625

File tree

5 files changed

+352
-282
lines changed

5 files changed

+352
-282
lines changed

pom-central.xml

Lines changed: 46 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,42 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4-
54
<groupId>com.github.javadev</groupId>
65
<artifactId>underscore11</artifactId>
76
<packaging>jar</packaging>
87
<version>1.28</version>
98
<name>java 11 port of Underscore.js</name>
109
<description>The java 11 port of Underscore.js</description>
1110
<url>https://github.com/javadev/underscore-java11</url>
12-
1311
<developers>
1412
<developer>
1513
<id>javadev</id>
1614
<name>Valentyn Kolesnikov</name>
1715
</developer>
1816
</developers>
19-
2017
<licenses>
2118
<license>
2219
<name>The MIT License</name>
2320
<url>http://opensource.org/licenses/MIT</url>
2421
<distribution>repo</distribution>
2522
</license>
2623
</licenses>
27-
2824
<scm>
2925
<connection>scm:git:git://github.com/javadev/underscore-java11.git</connection>
3026
<developerConnection>scm:git:git://github.com/javadev/underscore-java11.git</developerConnection>
3127
<url>https://github.com/javadev/underscore-java11</url>
3228
</scm>
33-
3429
<properties>
3530
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3631
</properties>
37-
3832
<ciManagement>
39-
<system>Travis CI</system>
40-
<url>https://travis-ci.org/javadev/underscore-java11</url>
33+
<system>GitHub Actions</system>
34+
<url>https://github.com/javadev/underscore-java11/actions</url>
4135
</ciManagement>
42-
4336
<issueManagement>
4437
<system>GitHub Issues</system>
4538
<url>https://github.com/javadev/underscore-java11/issues</url>
4639
</issueManagement>
47-
4840
<build>
4941
<plugins>
5042
<plugin>
@@ -58,59 +50,59 @@
5850
</configuration>
5951
</plugin>
6052
<plugin>
61-
<groupId>org.apache.maven.plugins</groupId>
62-
<artifactId>maven-jar-plugin</artifactId>
63-
<version>2.4</version>
64-
<configuration>
65-
<archive>
66-
<manifestEntries>
67-
<Automatic-Module-Name>com.github.underscore</Automatic-Module-Name>
68-
<Main-Class>com.github.underscore.Underscore</Main-Class>
69-
</manifestEntries>
70-
</archive>
71-
</configuration>
53+
<groupId>org.apache.maven.plugins</groupId>
54+
<artifactId>maven-jar-plugin</artifactId>
55+
<version>2.4</version>
56+
<configuration>
57+
<archive>
58+
<manifestEntries>
59+
<Automatic-Module-Name>com.github.underscore</Automatic-Module-Name>
60+
<Main-Class>com.github.underscore.Underscore</Main-Class>
61+
</manifestEntries>
62+
</archive>
63+
</configuration>
7264
</plugin>
7365
<plugin>
74-
<groupId>org.apache.maven.plugins</groupId>
75-
<artifactId>maven-source-plugin</artifactId>
76-
<version>3.0.1</version>
77-
<executions>
78-
<execution>
79-
<id>attach-sources</id>
80-
<goals>
81-
<goal>jar</goal>
82-
<goal>test-jar</goal>
83-
</goals>
84-
</execution>
85-
</executions>
66+
<groupId>org.apache.maven.plugins</groupId>
67+
<artifactId>maven-source-plugin</artifactId>
68+
<version>3.0.1</version>
69+
<executions>
70+
<execution>
71+
<id>attach-sources</id>
72+
<goals>
73+
<goal>jar</goal>
74+
<goal>test-jar</goal>
75+
</goals>
76+
</execution>
77+
</executions>
8678
</plugin>
8779
<plugin>
8880
<groupId>org.apache.maven.plugins</groupId>
8981
<artifactId>maven-javadoc-plugin</artifactId>
9082
<version>3.1.0</version>
91-
<executions>
92-
<execution>
93-
<id>attach-sources</id>
94-
<goals>
95-
<goal>jar</goal>
96-
<goal>test-jar</goal>
97-
</goals>
98-
</execution>
99-
</executions>
83+
<executions>
84+
<execution>
85+
<id>attach-sources</id>
86+
<goals>
87+
<goal>jar</goal>
88+
<goal>test-jar</goal>
89+
</goals>
90+
</execution>
91+
</executions>
10092
</plugin>
10193
<plugin>
10294
<groupId>org.apache.maven.plugins</groupId>
103-
<artifactId>maven-gpg-plugin</artifactId>
104-
<version>1.6</version>
105-
<executions>
106-
<execution>
107-
<id>sign-artifacts</id>
108-
<phase>verify</phase>
109-
<goals>
110-
<goal>sign</goal>
111-
</goals>
112-
</execution>
113-
</executions>
95+
<artifactId>maven-gpg-plugin</artifactId>
96+
<version>1.6</version>
97+
<executions>
98+
<execution>
99+
<id>sign-artifacts</id>
100+
<phase>verify</phase>
101+
<goals>
102+
<goal>sign</goal>
103+
</goals>
104+
</execution>
105+
</executions>
114106
</plugin>
115107
</plugins>
116108
</build>
@@ -128,5 +120,4 @@
128120
<scope>test</scope>
129121
</dependency>
130122
</dependencies>
131-
132-
</project>
123+
</project>

0 commit comments

Comments
 (0)