Skip to content

Commit db4e947

Browse files
committed
1.6.9 release
1 parent 8745559 commit db4e947

File tree

3 files changed

+176
-5
lines changed

3 files changed

+176
-5
lines changed

lts-spring/pom.xml

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
<packaging>jar</packaging>
1212
<artifactId>lts-spring</artifactId>
1313

14-
<properties>
15-
<quartz.version>2.2.2</quartz.version>
16-
</properties>
17-
1814
<dependencies>
1915
<dependency>
2016
<groupId>com.github.ltsopensource</groupId>

lts/pom.xml

+174
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,172 @@
3838
<artifactId>lts-monitor</artifactId>
3939
<version>${project.version}</version>
4040
</dependency>
41+
<dependency>
42+
<groupId>org.mongodb.morphia</groupId>
43+
<artifactId>morphia</artifactId>
44+
<scope>provided</scope>
45+
</dependency>
46+
<dependency>
47+
<groupId>org.mongodb</groupId>
48+
<artifactId>mongo-java-driver</artifactId>
49+
<scope>provided</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>com.alibaba</groupId>
53+
<artifactId>fastjson</artifactId>
54+
<scope>provided</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.slf4j</groupId>
58+
<artifactId>slf4j-api</artifactId>
59+
<scope>provided</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.slf4j</groupId>
63+
<artifactId>slf4j-log4j12</artifactId>
64+
<scope>provided</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>log4j</groupId>
68+
<artifactId>log4j</artifactId>
69+
<scope>provided</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>commons-logging</groupId>
73+
<artifactId>commons-logging-api</artifactId>
74+
<scope>provided</scope>
75+
</dependency>
76+
<dependency>
77+
<groupId>io.netty</groupId>
78+
<artifactId>netty-all</artifactId>
79+
<scope>provided</scope>
80+
</dependency>
81+
<dependency>
82+
<groupId>com.github.sgroschupf</groupId>
83+
<artifactId>zkclient</artifactId>
84+
<scope>provided</scope>
85+
</dependency>
86+
<dependency>
87+
<groupId>org.apache.curator</groupId>
88+
<artifactId>curator-recipes</artifactId>
89+
<scope>provided</scope>
90+
</dependency>
91+
<dependency>
92+
<groupId>redis.clients</groupId>
93+
<artifactId>jedis</artifactId>
94+
<scope>provided</scope>
95+
</dependency>
96+
<dependency>
97+
<groupId>org.fusesource.leveldbjni</groupId>
98+
<artifactId>leveldbjni-all</artifactId>
99+
<scope>provided</scope>
100+
</dependency>
101+
<dependency>
102+
<groupId>com.alibaba</groupId>
103+
<artifactId>druid</artifactId>
104+
<scope>provided</scope>
105+
</dependency>
106+
<dependency>
107+
<groupId>com.sleepycat</groupId>
108+
<artifactId>je</artifactId>
109+
<scope>provided</scope>
110+
</dependency>
111+
<dependency>
112+
<groupId>org.rocksdb</groupId>
113+
<artifactId>rocksdbjni</artifactId>
114+
<scope>provided</scope>
115+
</dependency>
116+
<dependency>
117+
<groupId>com.h2database</groupId>
118+
<artifactId>h2</artifactId>
119+
<scope>provided</scope>
120+
</dependency>
121+
<dependency>
122+
<groupId>org.apache.mina</groupId>
123+
<artifactId>mina-core</artifactId>
124+
<scope>provided</scope>
125+
</dependency>
126+
<dependency>
127+
<groupId>com.caucho</groupId>
128+
<artifactId>hessian</artifactId>
129+
<scope>provided</scope>
130+
</dependency>
131+
<dependency>
132+
<groupId>org.mapdb</groupId>
133+
<artifactId>mapdb</artifactId>
134+
<scope>provided</scope>
135+
</dependency>
136+
<dependency>
137+
<groupId>org.codehaus.groovy</groupId>
138+
<artifactId>groovy</artifactId>
139+
<scope>provided</scope>
140+
</dependency>
141+
<dependency>
142+
<groupId>com.fasterxml.jackson.core</groupId>
143+
<artifactId>jackson-core</artifactId>
144+
<scope>provided</scope>
145+
</dependency>
146+
<dependency>
147+
<groupId>com.fasterxml.jackson.core</groupId>
148+
<artifactId>jackson-databind</artifactId>
149+
<scope>provided</scope>
150+
</dependency>
151+
<dependency>
152+
<groupId>com.sun.mail</groupId>
153+
<artifactId>javax.mail</artifactId>
154+
<scope>provided</scope>
155+
</dependency>
156+
<dependency>
157+
<groupId>mysql</groupId>
158+
<artifactId>mysql-connector-java</artifactId>
159+
<scope>provided</scope>
160+
</dependency>
161+
<dependency>
162+
<groupId>org.javassist</groupId>
163+
<artifactId>javassist</artifactId>
164+
<scope>provided</scope>
165+
</dependency>
166+
<dependency>
167+
<groupId>org.springframework</groupId>
168+
<artifactId>spring-core</artifactId>
169+
<version>${springframework.version}</version>
170+
<scope>provided</scope>
171+
</dependency>
172+
<dependency>
173+
<groupId>org.springframework</groupId>
174+
<artifactId>spring-beans</artifactId>
175+
<version>${springframework.version}</version>
176+
<scope>provided</scope>
177+
</dependency>
178+
<dependency>
179+
<groupId>org.springframework</groupId>
180+
<artifactId>spring-context</artifactId>
181+
<version>${springframework.version}</version>
182+
<scope>provided</scope>
183+
</dependency>
184+
<dependency>
185+
<groupId>org.quartz-scheduler</groupId>
186+
<artifactId>quartz</artifactId>
187+
<version>${quartz.version}</version>
188+
<scope>provided</scope>
189+
</dependency>
190+
<dependency>
191+
<groupId>org.springframework.boot</groupId>
192+
<artifactId>spring-boot</artifactId>
193+
<scope>provided</scope>
194+
</dependency>
195+
<dependency>
196+
<groupId>org.springframework.boot</groupId>
197+
<artifactId>spring-boot-autoconfigure</artifactId>
198+
<scope>provided</scope>
199+
</dependency>
200+
<dependency>
201+
<groupId>org.springframework.boot</groupId>
202+
<artifactId>spring-boot-configuration-processor</artifactId>
203+
<version>${spring.boot.version}</version>
204+
<scope>provided</scope>
205+
<optional>true</optional>
206+
</dependency>
41207
</dependencies>
42208

43209
<build>
@@ -63,6 +229,10 @@
63229
</execution>
64230
</executions>
65231
<configuration>
232+
<includeDependencySources>true</includeDependencySources>
233+
<dependencySourceIncludes>
234+
<dependencySourceInclude>com.github.ltsopensource:*</dependencySourceInclude>
235+
</dependencySourceIncludes>
66236
<show>public</show>
67237
<charset>UTF-8</charset>
68238
<encoding>UTF-8</encoding>
@@ -148,6 +318,10 @@
148318
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
149319
<resource>META-INF/lts/internal/com.github.ltsopensource.admin.access.BackendAccessFactory</resource>
150320
</transformer>
321+
<transformer
322+
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
323+
<resource>META-INF/lts/internal/com.github.ltsopensource.jobtracker.complete.retry.JobRetryTimeGenerator</resource>
324+
</transformer>
151325
</transformers>
152326
</configuration>
153327
</execution>

pom.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<module>lts-spring</module>
2525
<module>lts-startup</module>
2626
<module>lts-monitor</module>
27-
<!--<module>lts</module>-->
27+
<module>lts</module>
2828
</modules>
2929

3030
<properties>
@@ -57,6 +57,7 @@
5757
<javax.mail.version>1.5.4</javax.mail.version>
5858
<spring.boot.version>1.3.3.RELEASE</spring.boot.version>
5959
<javassist.version>3.20.0-GA</javassist.version>
60+
<quartz.version>2.2.2</quartz.version>
6061
</properties>
6162

6263
<dependencyManagement>

0 commit comments

Comments
 (0)