|
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | | - <groupId>toolgood</groupId> |
| 7 | + <groupId>io.github.toolgood</groupId> |
8 | 8 | <artifactId>toolgood-algorithm</artifactId> |
9 | 9 | <version>3.0.3.0</version> |
| 10 | + <packaging>jar</packaging> |
10 | 11 |
|
11 | 12 | <name>toolgood.algorithm</name> |
12 | 13 | <url>https://github.com/toolgood/ToolGood.Algorithm</url> |
| 14 | + <description>ToolGood.Algorithm supports Four arithmetic, Excel formula, and supports Custom parameters. </description> |
| 15 | + <licenses> |
| 16 | + <license> |
| 17 | + <name>The Apache Software License, Version 2.0</name> |
| 18 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 19 | + <distribution>repo</distribution> |
| 20 | + </license> |
| 21 | + </licenses> |
| 22 | + <scm> |
| 23 | + <url>https://github.com/toolgood/ToolGood.Algorithm</url> |
| 24 | + <connection>scm:git:https://github.com/toolgood/ToolGood.Algorithm.git</connection> |
| 25 | + <developerConnection>scm:git:https://github.com/toolgood/ToolGood.Algorithm.git</developerConnection> |
| 26 | + </scm> |
| 27 | + <developers> |
| 28 | + <developer> |
| 29 | + <name>Lin Zhijun</name> |
| 30 | + <url>https://github.com/toolgood</url> |
| 31 | + <roles> |
| 32 | + <role>Project lead</role> |
| 33 | + </roles> |
| 34 | + </developer> |
| 35 | + </developers> |
13 | 36 |
|
14 | 37 | <properties> |
15 | 38 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 39 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
16 | 40 | <maven.compiler.source>1.8</maven.compiler.source> |
17 | 41 | <maven.compiler.target>1.8</maven.compiler.target> |
18 | 42 | </properties> |
19 | | - |
| 43 | + <issueManagement> |
| 44 | + <system>GitHub Issues</system> |
| 45 | + <url>https://github.com/toolgood/ToolGood.Algorithm/issues</url> |
| 46 | + </issueManagement> |
20 | 47 |
|
21 | 48 | <dependencies> |
22 | 49 | <dependency> |
|
26 | 53 | <scope>test</scope> |
27 | 54 | </dependency> |
28 | 55 |
|
29 | | - <dependency> |
30 | | - <groupId>org.antlr.v4.runtime</groupId> |
31 | | - <artifactId>antlr-runtime</artifactId> |
32 | | - <version>4.8</version> |
33 | | - <scope>system</scope> |
34 | | - <systemPath>${basedir}\libs\antlr-runtime-4.8.jar</systemPath> |
35 | | - </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.antlr</groupId> |
| 58 | + <artifactId>antlr4-runtime</artifactId> |
| 59 | + <version>4.9.3</version> |
| 60 | + </dependency> |
36 | 61 | <dependency> |
37 | 62 | <groupId>joda-time</groupId> |
38 | 63 | <artifactId>joda-time</artifactId> |
|
43 | 68 | <artifactId>commons-text</artifactId> |
44 | 69 | <version>1.9</version> |
45 | 70 | </dependency> |
46 | | - |
47 | 71 | </dependencies> |
48 | 72 |
|
49 | 73 | <build> |
50 | 74 | <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> |
51 | 75 | <plugins> |
| 76 | + <plugin> |
| 77 | + <groupId>org.apache.maven.plugins</groupId> |
| 78 | + <artifactId>maven-deploy-plugin</artifactId> |
| 79 | + <version>2.8.2</version> |
| 80 | + </plugin> |
52 | 81 | <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle --> |
53 | 82 | <plugin> |
54 | 83 | <artifactId>maven-clean-plugin</artifactId> |
|
86 | 115 | <artifactId>maven-install-plugin</artifactId> |
87 | 116 | <version>2.5.2</version> |
88 | 117 | </plugin> |
89 | | - <plugin> |
90 | | - <artifactId>maven-deploy-plugin</artifactId> |
91 | | - <version>2.8.2</version> |
92 | | - </plugin> |
93 | | - <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle --> |
94 | 118 | <plugin> |
95 | 119 | <artifactId>maven-site-plugin</artifactId> |
96 | 120 | <version>3.7.1</version> |
|
99 | 123 | <artifactId>maven-project-info-reports-plugin</artifactId> |
100 | 124 | <version>3.0.0</version> |
101 | 125 | </plugin> |
| 126 | + <plugin> |
| 127 | + <groupId>org.apache.maven.plugins</groupId> |
| 128 | + <artifactId>maven-gpg-plugin</artifactId> |
| 129 | + <version>1.6</version> |
| 130 | + <executions> |
| 131 | + <execution> |
| 132 | + <id>sign-artifacts</id> |
| 133 | + <phase>verify</phase> |
| 134 | + <goals> |
| 135 | + <goal>sign</goal> |
| 136 | + </goals> |
| 137 | + </execution> |
| 138 | + </executions> |
| 139 | + </plugin> |
| 140 | + <plugin> <!-- create javadoc jar --> |
| 141 | + <groupId>org.apache.maven.plugins</groupId> |
| 142 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 143 | + <version>2.10.4</version> |
| 144 | + <configuration> |
| 145 | + <javadocVersion>1.7</javadocVersion> |
| 146 | + <failOnError>false</failOnError> |
| 147 | + </configuration> |
| 148 | + <executions> |
| 149 | + <execution> |
| 150 | + <goals> |
| 151 | + <goal>javadoc</goal> |
| 152 | + </goals> |
| 153 | + </execution> |
| 154 | + </executions> |
| 155 | + </plugin> |
| 156 | + <plugin> <!-- create src jar --> |
| 157 | + <groupId>org.apache.maven.plugins</groupId> |
| 158 | + <artifactId>maven-source-plugin</artifactId> |
| 159 | + <version>3.0.1</version> |
| 160 | + <executions> |
| 161 | + <execution> |
| 162 | + <goals> |
| 163 | + <goal>jar</goal> |
| 164 | + </goals> |
| 165 | + </execution> |
| 166 | + </executions> |
| 167 | + </plugin> |
102 | 168 | </plugins> |
103 | 169 | </pluginManagement> |
104 | 170 | </build> |
|
0 commit comments