|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
3 | 3 |
|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
| 5 | + |
5 | 6 | <parent>
|
6 |
| - <groupId>com.alibaba</groupId> |
7 |
| - <artifactId>parent-pom</artifactId> |
8 |
| - <version>1.0.0-SNAPSHOT</version> |
| 7 | + <groupId>org.sonatype.oss</groupId> |
| 8 | + <artifactId>oss-parent</artifactId> |
| 9 | + <version>7</version> |
9 | 10 | </parent>
|
10 |
| - <artifactId>texpr</artifactId> |
| 11 | + |
| 12 | + <groupId>com.aliyun.tauris</groupId> |
| 13 | + <artifactId>expression</artifactId> |
11 | 14 | <packaging>jar</packaging>
|
| 15 | + <name>TExpr</name> |
12 | 16 | <description>Java boolean evaluate and numerical calculation expression</description>
|
13 |
| - <name>com :: aliyun :: tauris :: expression </name> |
14 | 17 | <version>1.0.8</version>
|
| 18 | + <url>https://github.com/aliyun/tauris-expression-engine</url> |
| 19 | + |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>Apache 2</name> |
| 23 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 24 | + <distribution>repo</distribution> |
| 25 | + <comments>A business-friendly OSS license</comments> |
| 26 | + </license> |
| 27 | + </licenses> |
| 28 | + |
| 29 | + <scm> |
| 30 | + <url>https://github.com/aliyun/tauris-expression</url> |
| 31 | + <connection>https://github.com/aliyun/tauris-expression-engine.git</connection> |
| 32 | + </scm> |
| 33 | + |
15 | 34 | <properties>
|
16 | 35 | <file_encoding>UTF-8</file_encoding>
|
17 | 36 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
40 | 59 |
|
41 | 60 | </dependencies>
|
42 | 61 |
|
| 62 | + <developers> |
| 63 | + <developer> |
| 64 | + <name>Ray Chaung</name> |
| 65 | + <id>rockis</id> |
| 66 | + <email>rockis@gmail.com</email> |
| 67 | + <roles> |
| 68 | + <role>Developer</role> |
| 69 | + </roles> |
| 70 | + <timezone>+8</timezone> |
| 71 | + </developer> |
| 72 | + </developers> |
| 73 | + |
| 74 | + |
43 | 75 | <build>
|
44 | 76 | <plugins>
|
45 | 77 | <plugin>
|
|
86 | 118 | </execution>
|
87 | 119 | </executions>
|
88 | 120 | </plugin>
|
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-gpg-plugin</artifactId> |
| 124 | + <version>1.6</version> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <phase>verify</phase> |
| 128 | + <goals> |
| 129 | + <goal>sign</goal> |
| 130 | + </goals> |
| 131 | + </execution> |
| 132 | + </executions> |
| 133 | + </plugin> |
89 | 134 | </plugins>
|
90 | 135 | </build>
|
91 | 136 |
|
| 137 | + <distributionManagement> |
| 138 | + <snapshotRepository> |
| 139 | + <id>oss</id> |
| 140 | + <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
| 141 | + </snapshotRepository> |
| 142 | + <repository> |
| 143 | + <id>oss</id> |
| 144 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 145 | + </repository> |
| 146 | + </distributionManagement> |
| 147 | + |
92 | 148 | <contributors>
|
93 | 149 | <contributor>
|
94 | 150 | <properties>
|
95 | 151 | <provider>rockis@gmail.com</provider>
|
96 | 152 | <codeName>texpr</codeName>
|
97 |
| - <codeUrl>http://gitlab.alibaba-inc.com/ware/ware-expr/tree/master</codeUrl> |
| 153 | + <codeUrl>https://github.com/aliyun/tauris-expression-engine/tree/master</codeUrl> |
98 | 154 | <description>contributors added by SCM Plugin, please don't modify it!</description>
|
99 | 155 | </properties>
|
100 | 156 | </contributor>
|
|
0 commit comments