Commit cfa53a5df7f10838a493063d4f3131f851e0e9f5
1 parent
6414f91f
pre release 1.0.0
Showing
6 changed files
with
86 additions
and
7 deletions
nicolas-cli/pom.xml
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | <parent> |
7 | 7 | <artifactId>nicolas-container</artifactId> |
8 | 8 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
9 | - <version>1.0-SNAPSHOT</version> | |
9 | + <version>1.0.0</version> | |
10 | 10 | </parent> |
11 | 11 | |
12 | 12 | <artifactId>nicolas-cli</artifactId> |
... | ... | @@ -50,6 +50,10 @@ |
50 | 50 | <artifactId>slf4j-api</artifactId> |
51 | 51 | </dependency> |
52 | 52 | <dependency> |
53 | + <groupId>uk.org.lidalia</groupId> | |
54 | + <artifactId>slf4j-test</artifactId> | |
55 | + </dependency> | |
56 | + <dependency> | |
53 | 57 | <groupId>org.slf4j</groupId> |
54 | 58 | <artifactId>slf4j-simple</artifactId> |
55 | 59 | </dependency> |
... | ... | @@ -93,6 +97,23 @@ |
93 | 97 | </executions> |
94 | 98 | </plugin> |
95 | 99 | |
100 | + <plugin> | |
101 | + <artifactId>maven-surefire-plugin</artifactId> | |
102 | + <configuration> | |
103 | + <classpathDependencyExcludes> | |
104 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | |
105 | + </classpathDependencyExcludes> | |
106 | + </configuration> | |
107 | + </plugin> | |
108 | + <plugin> | |
109 | + <artifactId>maven-failsafe-plugin</artifactId> | |
110 | + <configuration> | |
111 | + <classpathDependencyExcludes> | |
112 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | |
113 | + </classpathDependencyExcludes> | |
114 | + </configuration> | |
115 | + </plugin> | |
116 | + | |
96 | 117 | </plugins> |
97 | 118 | </build> |
98 | 119 | </project> |
99 | 120 | \ No newline at end of file |
... | ... |
nicolas-lib/pom.xml
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | <parent> |
7 | 7 | <artifactId>nicolas-container</artifactId> |
8 | 8 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
9 | - <version>1.0-SNAPSHOT</version> | |
9 | + <version>1.0.0</version> | |
10 | 10 | </parent> |
11 | 11 | |
12 | 12 | <artifactId>nicolas-lib</artifactId> |
... | ... | @@ -38,6 +38,10 @@ |
38 | 38 | <groupId>org.slf4j</groupId> |
39 | 39 | <artifactId>slf4j-api</artifactId> |
40 | 40 | </dependency> |
41 | + <dependency> | |
42 | + <groupId>uk.org.lidalia</groupId> | |
43 | + <artifactId>slf4j-test</artifactId> | |
44 | + </dependency> | |
41 | 45 | |
42 | 46 | <!-- test --> |
43 | 47 | <dependency> |
... | ... | @@ -50,4 +54,25 @@ |
50 | 54 | <scope>test</scope> |
51 | 55 | </dependency> |
52 | 56 | </dependencies> |
57 | + | |
58 | + <build> | |
59 | + <plugins> | |
60 | + <plugin> | |
61 | + <artifactId>maven-surefire-plugin</artifactId> | |
62 | + <configuration> | |
63 | + <classpathDependencyExcludes> | |
64 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | |
65 | + </classpathDependencyExcludes> | |
66 | + </configuration> | |
67 | + </plugin> | |
68 | + <plugin> | |
69 | + <artifactId>maven-failsafe-plugin</artifactId> | |
70 | + <configuration> | |
71 | + <classpathDependencyExcludes> | |
72 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | |
73 | + </classpathDependencyExcludes> | |
74 | + </configuration> | |
75 | + </plugin> | |
76 | + </plugins> | |
77 | + </build> | |
53 | 78 | </project> |
54 | 79 | \ No newline at end of file |
... | ... |
nicolas-model/pom.xml
nicolas-multiservice/pom.xml
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | <parent> |
6 | 6 | <artifactId>nicolas-container</artifactId> |
7 | 7 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
8 | - <version>1.0-SNAPSHOT</version> | |
8 | + <version>1.0.0</version> | |
9 | 9 | </parent> |
10 | 10 | <modelVersion>4.0.0</modelVersion> |
11 | 11 | |
... | ... | @@ -29,6 +29,10 @@ |
29 | 29 | <groupId>org.slf4j</groupId> |
30 | 30 | <artifactId>slf4j-api</artifactId> |
31 | 31 | </dependency> |
32 | + <dependency> | |
33 | + <groupId>uk.org.lidalia</groupId> | |
34 | + <artifactId>slf4j-test</artifactId> | |
35 | + </dependency> | |
32 | 36 | |
33 | 37 | <!-- test --> |
34 | 38 | <dependency> |
... | ... | @@ -42,4 +46,25 @@ |
42 | 46 | </dependency> |
43 | 47 | |
44 | 48 | </dependencies> |
49 | + | |
50 | + <build> | |
51 | + <plugins> | |
52 | + <plugin> | |
53 | + <artifactId>maven-surefire-plugin</artifactId> | |
54 | + <configuration> | |
55 | + <classpathDependencyExcludes> | |
56 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | |
57 | + </classpathDependencyExcludes> | |
58 | + </configuration> | |
59 | + </plugin> | |
60 | + <plugin> | |
61 | + <artifactId>maven-failsafe-plugin</artifactId> | |
62 | + <configuration> | |
63 | + <classpathDependencyExcludes> | |
64 | + <classpathDependencyExcludes>org.slf4j:slf4j-simple</classpathDependencyExcludes> | |
65 | + </classpathDependencyExcludes> | |
66 | + </configuration> | |
67 | + </plugin> | |
68 | + </plugins> | |
69 | + </build> | |
45 | 70 | </project> |
46 | 71 | \ No newline at end of file |
... | ... |
nicolas-train/pom.xml
pom.xml
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | |
7 | 7 | <groupId>pl.waw.ipipan.zil.summ</groupId> |
8 | 8 | <artifactId>nicolas-container</artifactId> |
9 | - <version>1.0-SNAPSHOT</version> | |
9 | + <version>1.0.0</version> | |
10 | 10 | |
11 | 11 | <packaging>pom</packaging> |
12 | 12 | |
... | ... | @@ -39,7 +39,7 @@ |
39 | 39 | <jcommander.version>1.64</jcommander.version> |
40 | 40 | <libthrift.version>0.9.0</libthrift.version> |
41 | 41 | |
42 | - <jacoco-maven-plugin.version>0.7.8</jacoco-maven-plugin.version> | |
42 | + <jacoco-maven-plugin.version>0.7.9</jacoco-maven-plugin.version> | |
43 | 43 | <maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version> |
44 | 44 | <maven-site-plugin.version>3.5.1</maven-site-plugin.version> |
45 | 45 | <maven-dependency-plugin.version>3.0.0</maven-dependency-plugin.version> |
... | ... | @@ -52,6 +52,7 @@ |
52 | 52 | <maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version> |
53 | 53 | <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
54 | 54 | <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> |
55 | + <slf4j-test.version>1.0.0</slf4j-test.version> | |
55 | 56 | </properties> |
56 | 57 | |
57 | 58 | <prerequisites> |
... | ... | @@ -187,6 +188,13 @@ |
187 | 188 | <version>${mockito-core.version}</version> |
188 | 189 | <scope>test</scope> |
189 | 190 | </dependency> |
191 | + <dependency> | |
192 | + <groupId>uk.org.lidalia</groupId> | |
193 | + <artifactId>slf4j-test</artifactId> | |
194 | + <version>${slf4j-test.version}</version> | |
195 | + <scope>test</scope> | |
196 | + </dependency> | |
197 | + | |
190 | 198 | </dependencies> |
191 | 199 | </dependencyManagement> |
192 | 200 | |
... | ... |