Skip to content

Commit be01be7

Browse files
author
川石
committed
add travis config
1 parent 239c12e commit be01be7

File tree

3 files changed

+72
-6
lines changed

3 files changed

+72
-6
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/target
2+
/.project
3+
/.settings
4+
/.classpath
5+
/.idea
6+
/.DS_Store
7+
*.iml

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: java
2+
jdk:
3+
- openjdk8

pom.xml

Lines changed: 62 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,35 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33

44
<modelVersion>4.0.0</modelVersion>
5+
56
<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>
910
</parent>
10-
<artifactId>texpr</artifactId>
11+
12+
<groupId>com.aliyun.tauris</groupId>
13+
<artifactId>expression</artifactId>
1114
<packaging>jar</packaging>
15+
<name>TExpr</name>
1216
<description>Java boolean evaluate and numerical calculation expression</description>
13-
<name>com :: aliyun :: tauris :: expression </name>
1417
<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+
1534
<properties>
1635
<file_encoding>UTF-8</file_encoding>
1736
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -40,6 +59,19 @@
4059

4160
</dependencies>
4261

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+
4375
<build>
4476
<plugins>
4577
<plugin>
@@ -86,15 +118,39 @@
86118
</execution>
87119
</executions>
88120
</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>
89134
</plugins>
90135
</build>
91136

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+
92148
<contributors>
93149
<contributor>
94150
<properties>
95151
<provider>rockis@gmail.com</provider>
96152
<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>
98154
<description>contributors added by SCM Plugin, please don't modify it!</description>
99155
</properties>
100156
</contributor>

0 commit comments

Comments
 (0)