Revision 45615
Added by Michele Artini almost 8 years ago
modules/dnet-springboot-apps/trunk/dnet-is-application/pom.xml | ||
---|---|---|
23 | 23 |
<dependencies> |
24 | 24 |
|
25 | 25 |
<dependency> |
26 |
<groupId>org.springframework.boot</groupId> |
|
27 |
<artifactId>spring-boot-starter-web</artifactId> |
|
28 |
</dependency> |
|
29 |
|
|
30 |
<dependency> |
|
31 |
<groupId>org.springframework.boot</groupId> |
|
32 |
<artifactId>spring-boot-configuration-processor</artifactId> |
|
33 |
<optional>true</optional> |
|
34 |
</dependency> |
|
35 |
|
|
36 |
<dependency> |
|
37 |
<groupId>org.springframework.boot</groupId> |
|
38 |
<artifactId>spring-boot-starter-test</artifactId> |
|
39 |
<scope>test</scope> |
|
40 |
</dependency> |
|
41 |
|
|
42 |
<dependency> |
|
43 |
<groupId>eu.dnetlib</groupId> |
|
44 |
<artifactId>dnet-common-utils</artifactId> |
|
45 |
<version>1.0.0-SNAPSHOT</version> |
|
46 |
</dependency> |
|
47 |
|
|
48 |
<dependency> |
|
49 | 26 |
<groupId>org.exist-db</groupId> |
50 | 27 |
<artifactId>exist-core</artifactId> |
51 | 28 |
<version>3.0.RC1</version> |
... | ... | |
99 | 76 |
<version>3.0.RC1</version> |
100 | 77 |
</dependency> |
101 | 78 |
|
102 |
<dependency> |
|
103 |
<groupId>junit</groupId> |
|
104 |
<artifactId>junit</artifactId> |
|
105 |
<scope>test</scope> |
|
106 |
</dependency> |
|
107 |
|
|
108 | 79 |
</dependencies> |
109 | 80 |
|
110 |
<build> |
|
111 |
<plugins> |
|
112 |
<plugin> |
|
113 |
<groupId>org.springframework.boot</groupId> |
|
114 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
115 |
</plugin> |
|
116 |
</plugins> |
|
117 |
</build> |
|
118 |
|
|
119 | 81 |
<repositories> |
120 | 82 |
<repository> |
121 | 83 |
<id>exist</id> |
modules/dnet-springboot-apps/trunk/pom.xml | ||
---|---|---|
34 | 34 |
<module>dnet-simple-aggregation-worker</module> |
35 | 35 |
</modules> |
36 | 36 |
|
37 |
<dependencies> |
|
38 |
<dependency> |
|
39 |
<groupId>org.springframework.boot</groupId> |
|
40 |
<artifactId>spring-boot-starter-web</artifactId> |
|
41 |
</dependency> |
|
42 |
|
|
43 |
<dependency> |
|
44 |
<groupId>org.springframework.boot</groupId> |
|
45 |
<artifactId>spring-boot-configuration-processor</artifactId> |
|
46 |
<optional>true</optional> |
|
47 |
</dependency> |
|
48 |
|
|
49 |
<dependency> |
|
50 |
<groupId>org.springframework.boot</groupId> |
|
51 |
<artifactId>spring-boot-starter-test</artifactId> |
|
52 |
<scope>test</scope> |
|
53 |
</dependency> |
|
54 |
|
|
55 |
<dependency> |
|
56 |
<groupId>junit</groupId> |
|
57 |
<artifactId>junit</artifactId> |
|
58 |
<scope>test</scope> |
|
59 |
</dependency> |
|
60 |
|
|
61 |
<dependency> |
|
62 |
<groupId>eu.dnetlib</groupId> |
|
63 |
<artifactId>dnet-common-utils</artifactId> |
|
64 |
<version>1.0.0-SNAPSHOT</version> |
|
65 |
</dependency> |
|
66 |
|
|
67 |
</dependencies> |
|
68 |
|
|
69 |
<build> |
|
70 |
<plugins> |
|
71 |
<plugin> |
|
72 |
<groupId>org.springframework.boot</groupId> |
|
73 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
74 |
</plugin> |
|
75 |
</plugins> |
|
76 |
</build> |
|
77 |
|
|
37 | 78 |
</project> |
modules/dnet-springboot-apps/trunk/dnet-simple-aggregation-worker/pom.xml | ||
---|---|---|
26 | 26 |
<groupId>org.springframework.boot</groupId> |
27 | 27 |
<artifactId>spring-boot-starter-data-mongodb</artifactId> |
28 | 28 |
</dependency> |
29 |
|
|
30 |
<dependency> |
|
31 |
<groupId>org.springframework.boot</groupId> |
|
32 |
<artifactId>spring-boot-starter-web</artifactId> |
|
33 |
</dependency> |
|
34 |
|
|
35 |
<dependency> |
|
36 |
<groupId>org.springframework.boot</groupId> |
|
37 |
<artifactId>spring-boot-configuration-processor</artifactId> |
|
38 |
<optional>true</optional> |
|
39 |
</dependency> |
|
40 |
|
|
41 |
<dependency> |
|
42 |
<groupId>org.springframework.boot</groupId> |
|
43 |
<artifactId>spring-boot-starter-test</artifactId> |
|
44 |
<scope>test</scope> |
|
45 |
</dependency> |
|
46 |
|
|
47 |
<dependency> |
|
48 |
<groupId>eu.dnetlib</groupId> |
|
49 |
<artifactId>dnet-common-utils</artifactId> |
|
50 |
<version>1.0.0-SNAPSHOT</version> |
|
51 |
</dependency> |
|
52 | 29 |
|
53 | 30 |
<dependency> |
54 | 31 |
<groupId>commons-net</groupId> |
... | ... | |
76 | 53 |
|
77 | 54 |
</dependencies> |
78 | 55 |
|
79 |
<build> |
|
80 |
<plugins> |
|
81 |
<plugin> |
|
82 |
<groupId>org.springframework.boot</groupId> |
|
83 |
<artifactId>spring-boot-maven-plugin</artifactId> |
|
84 |
</plugin> |
|
85 |
</plugins> |
|
86 |
</build> |
|
87 |
|
|
88 | 56 |
</project> |
Also available in: Unified diff