Skip to content

Commit 6362643

Browse files
committedJul 13, 2022
#1092 versions stabilized
1 parent 8b3b058 commit 6362643

File tree

7 files changed

+95
-9
lines changed

7 files changed

+95
-9
lines changed
 

‎.rultor.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
docker:
2+
image: yegor256/rultor-image:1.9.1
13
assets:
24
settings.xml: yegor256/home#assets/qulice/settings.xml
35
secring.gpg: yegor256/home#assets/secring.gpg
@@ -7,13 +9,12 @@ install: |
79
merge:
810
script: |-
911
mvn clean install -Pqulice-profile -Pqulice --errors --batch-mode
10-
deploy:
11-
script: |-
12-
echo "Nothing to deploy"
13-
exit -1
1412
release:
1513
pre: false
14+
sensitive:
15+
- settings.xml
1616
script: |-
17+
[[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1
1718
mvn versions:set "-DnewVersion=${tag}"
1819
git commit -am "${tag}"
1920
mvn clean deploy -Pqulice-profile -Pqulice -Psonatype --errors --settings ../settings.xml

‎pom.xml

+53
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,49 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
9696
</distributionManagement>
9797
<dependencyManagement>
9898
<dependencies>
99+
<dependency>
100+
<groupId>org.projectlombok</groupId>
101+
<artifactId>lombok</artifactId>
102+
<version>1.18.20</version>
103+
<scope>provided</scope>
104+
</dependency>
105+
<dependency>
106+
<groupId>org.apache.commons</groupId>
107+
<artifactId>commons-lang3</artifactId>
108+
<version>3.12.0</version>
109+
</dependency>
110+
<dependency>
111+
<groupId>com.jcabi</groupId>
112+
<artifactId>jcabi-xml</artifactId>
113+
<version>0.23.1</version>
114+
</dependency>
115+
<dependency>
116+
<groupId>com.jcabi</groupId>
117+
<artifactId>jcabi-log</artifactId>
118+
<version>0.20.0</version>
119+
</dependency>
120+
<dependency>
121+
<groupId>com.jcabi</groupId>
122+
<artifactId>jcabi-aspects</artifactId>
123+
<version>0.23.2</version>
124+
<scope>provided</scope>
125+
</dependency>
126+
<dependency>
127+
<groupId>com.jcabi</groupId>
128+
<artifactId>jcabi-matchers</artifactId>
129+
<version>1.5.3</version>
130+
<scope>test</scope>
131+
</dependency>
132+
<dependency>
133+
<groupId>commons-collections</groupId>
134+
<artifactId>commons-collections</artifactId>
135+
<version>3.2.2</version>
136+
</dependency>
137+
<dependency>
138+
<groupId>commons-io</groupId>
139+
<artifactId>commons-io</artifactId>
140+
<version>2.11.0</version>
141+
</dependency>
99142
<dependency>
100143
<groupId>org.cactoos</groupId>
101144
<artifactId>cactoos</artifactId>
@@ -119,6 +162,16 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
119162
<version>5.3.1</version>
120163
<scope>test</scope>
121164
</dependency>
165+
<dependency>
166+
<groupId>org.hamcrest</groupId>
167+
<artifactId>hamcrest-core</artifactId>
168+
<version>1.3</version>
169+
</dependency>
170+
<dependency>
171+
<groupId>org.hamcrest</groupId>
172+
<artifactId>hamcrest-library</artifactId>
173+
<version>1.3</version>
174+
</dependency>
122175
</dependencies>
123176
</dependencyManagement>
124177
<build>

‎qulice-ant/pom.xml

+5
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,12 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
7676
<dependency>
7777
<groupId>com.jcabi</groupId>
7878
<artifactId>jcabi-log</artifactId>
79+
<!-- version from parent -->
7980
</dependency>
8081
<dependency>
8182
<groupId>com.jcabi</groupId>
8283
<artifactId>jcabi-aspects</artifactId>
84+
<!-- version from parent -->
8385
<scope>provided</scope>
8486
</dependency>
8587
<dependency>
@@ -90,14 +92,17 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
9092
<dependency>
9193
<groupId>commons-io</groupId>
9294
<artifactId>commons-io</artifactId>
95+
<!-- version from parent -->
9396
</dependency>
9497
<dependency>
9598
<groupId>org.junit.jupiter</groupId>
9699
<artifactId>junit-jupiter-api</artifactId>
100+
<!-- version from parent -->
97101
</dependency>
98102
<dependency>
99103
<groupId>org.junit.jupiter</groupId>
100104
<artifactId>junit-jupiter-engine</artifactId>
105+
<!-- version from parent -->
101106
</dependency>
102107
</dependencies>
103108
<build>

‎qulice-checkstyle/pom.xml

+9
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
4242
<dependency>
4343
<groupId>org.cactoos</groupId>
4444
<artifactId>cactoos</artifactId>
45+
<!-- version from parent -->
4546
</dependency>
4647
<dependency>
4748
<groupId>com.qulice</groupId>
@@ -51,15 +52,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
5152
<dependency>
5253
<groupId>com.google.guava</groupId>
5354
<artifactId>guava</artifactId>
55+
<!-- version from parent -->
5456
<scope>compile</scope>
5557
</dependency>
5658
<dependency>
5759
<groupId>com.jcabi</groupId>
5860
<artifactId>jcabi-log</artifactId>
61+
<!-- version from parent -->
5962
</dependency>
6063
<dependency>
6164
<groupId>com.jcabi</groupId>
6265
<artifactId>jcabi-aspects</artifactId>
66+
<!-- version from parent -->
6367
<scope>provided</scope>
6468
</dependency>
6569
<dependency>
@@ -86,22 +90,27 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
8690
<dependency>
8791
<groupId>commons-io</groupId>
8892
<artifactId>commons-io</artifactId>
93+
<!-- version from parent -->
8994
</dependency>
9095
<dependency>
9196
<groupId>org.apache.commons</groupId>
9297
<artifactId>commons-lang3</artifactId>
98+
<!-- version from parent -->
9399
</dependency>
94100
<dependency>
95101
<groupId>org.junit.jupiter</groupId>
96102
<artifactId>junit-jupiter-api</artifactId>
103+
<!-- version from parent -->
97104
</dependency>
98105
<dependency>
99106
<groupId>org.junit.jupiter</groupId>
100107
<artifactId>junit-jupiter-engine</artifactId>
108+
<!-- version from parent -->
101109
</dependency>
102110
<dependency>
103111
<groupId>org.junit.jupiter</groupId>
104112
<artifactId>junit-jupiter-params</artifactId>
113+
<!-- version from parent -->
105114
</dependency>
106115
</dependencies>
107116
<build>

‎qulice-maven-plugin/pom.xml

+10-3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
4646
<dependency>
4747
<groupId>org.cactoos</groupId>
4848
<artifactId>cactoos</artifactId>
49+
<!-- version from parent -->
4950
</dependency>
5051
<dependency>
5152
<groupId>com.qulice</groupId>
@@ -61,6 +62,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
6162
<dependency>
6263
<groupId>com.google.guava</groupId>
6364
<artifactId>guava</artifactId>
65+
<!-- version from parent -->
6466
<scope>test</scope>
6567
</dependency>
6668
<dependency>
@@ -76,12 +78,12 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
7678
<dependency>
7779
<groupId>org.hamcrest</groupId>
7880
<artifactId>hamcrest-core</artifactId>
79-
<version>1.3</version>
81+
<!-- version from parent -->
8082
</dependency>
8183
<dependency>
8284
<groupId>org.hamcrest</groupId>
8385
<artifactId>hamcrest-library</artifactId>
84-
<version>1.3</version>
86+
<!-- version from parent -->
8587
</dependency>
8688
<dependency>
8789
<groupId>com.google.code.findbugs</groupId>
@@ -120,24 +122,28 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
120122
<dependency>
121123
<groupId>commons-io</groupId>
122124
<artifactId>commons-io</artifactId>
125+
<!-- version from parent -->
123126
</dependency>
124127
<dependency>
125128
<groupId>commons-collections</groupId>
126129
<artifactId>commons-collections</artifactId>
127-
<version>3.2.2</version>
130+
<!-- version from parent -->
128131
</dependency>
129132
<dependency>
130133
<groupId>com.jcabi</groupId>
131134
<artifactId>jcabi-log</artifactId>
135+
<!-- version from parent -->
132136
</dependency>
133137
<dependency>
134138
<groupId>com.jcabi</groupId>
135139
<artifactId>jcabi-xml</artifactId>
140+
<!-- version from parent -->
136141
</dependency>
137142
<dependency>
138143
<!-- Forward all calls to SLF4J to Maven log. -->
139144
<groupId>com.jcabi</groupId>
140145
<artifactId>jcabi-maven-slf4j</artifactId>
146+
<version>0.10</version>
141147
</dependency>
142148
<dependency>
143149
<groupId>org.apache.maven</groupId>
@@ -218,6 +224,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
218224
<dependency>
219225
<groupId>org.apache.commons</groupId>
220226
<artifactId>commons-lang3</artifactId>
227+
<!-- version from parent -->
221228
</dependency>
222229
<dependency>
223230
<groupId>org.hibernate</groupId>

‎qulice-pmd/pom.xml

+9-2
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,19 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
5050
<dependency>
5151
<groupId>com.google.guava</groupId>
5252
<artifactId>guava</artifactId>
53+
<!-- version from parent -->
5354
<scope>test</scope>
5455
</dependency>
5556
<dependency>
5657
<groupId>com.jcabi</groupId>
5758
<artifactId>jcabi-matchers</artifactId>
59+
<!-- version from parent -->
5860
<scope>test</scope>
5961
</dependency>
6062
<dependency>
6163
<groupId>com.jcabi</groupId>
6264
<artifactId>jcabi-log</artifactId>
65+
<!-- version from parent -->
6366
</dependency>
6467
<dependency>
6568
<groupId>net.sourceforge.pmd</groupId>
@@ -80,28 +83,32 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
8083
<dependency>
8184
<groupId>org.hamcrest</groupId>
8285
<artifactId>hamcrest-core</artifactId>
83-
<version>1.3</version>
86+
<!-- version from parent -->
8487
</dependency>
8588
<dependency>
8689
<groupId>org.hamcrest</groupId>
8790
<artifactId>hamcrest-library</artifactId>
88-
<version>1.3</version>
91+
<!-- version from parent -->
8992
</dependency>
9093
<dependency>
9194
<groupId>org.cactoos</groupId>
9295
<artifactId>cactoos</artifactId>
96+
<!-- version from parent -->
9397
</dependency>
9498
<dependency>
9599
<groupId>org.junit.jupiter</groupId>
96100
<artifactId>junit-jupiter-api</artifactId>
101+
<!-- version from parent -->
97102
</dependency>
98103
<dependency>
99104
<groupId>org.junit.jupiter</groupId>
100105
<artifactId>junit-jupiter-engine</artifactId>
106+
<!-- version from parent -->
101107
</dependency>
102108
<dependency>
103109
<groupId>org.junit.jupiter</groupId>
104110
<artifactId>junit-jupiter-params</artifactId>
111+
<!-- version from parent -->
105112
</dependency>
106113
</dependencies>
107114
<build>

‎qulice-spi/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,22 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
4242
<dependency>
4343
<groupId>commons-io</groupId>
4444
<artifactId>commons-io</artifactId>
45+
<!-- version from parent -->
4546
</dependency>
4647
<dependency>
4748
<groupId>org.projectlombok</groupId>
4849
<artifactId>lombok</artifactId>
50+
<!-- version from parent -->
4951
</dependency>
5052
<dependency>
5153
<groupId>org.junit.jupiter</groupId>
5254
<artifactId>junit-jupiter-api</artifactId>
55+
<!-- version from parent -->
5356
</dependency>
5457
<dependency>
5558
<groupId>org.junit.jupiter</groupId>
5659
<artifactId>junit-jupiter-engine</artifactId>
60+
<!-- version from parent -->
5761
</dependency>
5862
</dependencies>
5963
<build>

0 commit comments

Comments
 (0)
Please sign in to comment.