File tree 7 files changed +32
-17
lines changed
src/main/java/org/javaee7/batch/util
src/test/java/org/javaee7/batch/batchlet/simple
src/test/java/org/javaee7/batch/chunk/simple
7 files changed +32
-17
lines changed Original file line number Diff line number Diff line change 3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
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
<parent >
7
- <artifactId > javaee7-samples</ artifactId >
8
- <groupId >org.javaee7</ groupId >
8
+ <groupId >org. javaee7.batch</ groupId >
9
+ <artifactId >batch-samples</ artifactId >
9
10
<version >1.0-SNAPSHOT</version >
10
11
<relativePath >../pom.xml</relativePath >
11
12
</parent >
12
13
13
- <artifactId >batch-test </artifactId >
14
+ <artifactId >batch-util </artifactId >
14
15
<version >1.0-SNAPSHOT</version >
15
16
16
17
</project >
Original file line number Diff line number Diff line change 1
- package org .javaee7 .batch .test ;
1
+ package org .javaee7 .batch .util ;
2
2
3
3
import javax .batch .runtime .BatchStatus ;
4
4
import javax .batch .runtime .JobExecution ;
Original file line number Diff line number Diff line change 9
9
<relativePath >../pom.xml</relativePath >
10
10
</parent >
11
11
12
- <groupId >org.javaee7.batch</groupId >
13
12
<artifactId >batchlet-simple</artifactId >
14
13
<version >1.0-SNAPSHOT</version >
15
14
<packaging >war</packaging >
15
+
16
+ <dependencies >
17
+ <dependency >
18
+ <groupId >org.javaee7.batch</groupId >
19
+ <artifactId >batch-util</artifactId >
20
+ </dependency >
21
+ </dependencies >
16
22
</project >
17
23
Original file line number Diff line number Diff line change 1
1
package org .javaee7 .batch .batchlet .simple ;
2
2
3
- import org .javaee7 .batch .test .BatchTestHelper ;
3
+ import org .javaee7 .batch .util .BatchTestHelper ;
4
4
import org .jboss .arquillian .container .test .api .Deployment ;
5
5
import org .jboss .arquillian .junit .Arquillian ;
6
6
import org .jboss .shrinkwrap .api .ArchivePaths ;
Original file line number Diff line number Diff line change 9
9
<relativePath >../pom.xml</relativePath >
10
10
</parent >
11
11
12
- <groupId >org.javaee7.batch</groupId >
13
12
<artifactId >chunk-simple</artifactId >
14
13
<version >1.0-SNAPSHOT</version >
15
14
<packaging >war</packaging >
18
17
<properties >
19
18
<netbeans .hint.deploy.server>gfv3ee6</netbeans .hint.deploy.server>
20
19
</properties >
20
+
21
+ <dependencies >
22
+ <dependency >
23
+ <groupId >org.javaee7.batch</groupId >
24
+ <artifactId >batch-util</artifactId >
25
+ </dependency >
26
+ </dependencies >
21
27
</project >
Original file line number Diff line number Diff line change 1
1
package org .javaee7 .batch .chunk .simple ;
2
2
3
- import org .javaee7 .batch .test .BatchTestHelper ;
3
+ import org .javaee7 .batch .util .BatchTestHelper ;
4
4
import org .jboss .arquillian .container .test .api .Deployment ;
5
5
import org .jboss .arquillian .junit .Arquillian ;
6
6
import org .jboss .shrinkwrap .api .ArchivePaths ;
Original file line number Diff line number Diff line change 16
16
<name >Java EE 7 Batch Samples</name >
17
17
18
18
<modules >
19
- <module >batch-test </module >
19
+ <module >batch-util </module >
20
20
<module >batchlet-simple</module >
21
21
<module >chunk-checkpoint</module >
22
22
<module >chunk-csv-database</module >
33
33
<module >chunk-simple-nobeans</module >
34
34
</modules >
35
35
36
- <dependencies >
37
- <dependency >
38
- <groupId >org.javaee7</groupId >
39
- <artifactId >batch-test</artifactId >
40
- <version >1.0-SNAPSHOT</version >
41
- <scope >test</scope >
42
- </dependency >
43
- </dependencies >
36
+ <dependencyManagement >
37
+ <dependencies >
38
+ <dependency >
39
+ <groupId >org.javaee7.batch</groupId >
40
+ <artifactId >batch-util</artifactId >
41
+ <version >1.0-SNAPSHOT</version >
42
+ <scope >test</scope >
43
+ </dependency >
44
+ </dependencies >
45
+ </dependencyManagement >
44
46
45
47
</project >
You can’t perform that action at this time.
0 commit comments