Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit ceeabae

Browse files
author
h1alexbel
committed
chore(#96)
1 parent 4511a3b commit ceeabae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1319
-1121
lines changed

.gitattributes

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Check out all text files in UNIX format, with LF as end of line
2+
# Don't change this file. If you have any ideas about it, please
3+
# submit a separate issue about it and we'll discuss.
4+
5+
* text=auto eol=lf
6+
*.java ident
7+
*.xml ident
8+
*.png binary

.xcop

Whitespace-only changes.

LICENSE.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
MIT License
1+
The MIT License (MIT)
22

3-
Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS
3+
Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -9,8 +9,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
copies of the Software, and to permit persons to whom the Software is
1010
furnished to do so, subject to the following conditions:
1111

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included
13+
in all copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

checkstyle-suppressions.xml

-29
This file was deleted.

pom.xml

+74-72
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
MIT License
3+
The MIT License (MIT)
44
5-
Copyright (c) 2023 Aliaksei Bialiauski, EO-CQRS
5+
Copyright (c) 2023-2024 Aliaksei Bialiauski, EO-CQRS
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal
@@ -11,8 +11,8 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1111
copies of the Software, and to permit persons to whom the Software is
1212
furnished to do so, subject to the following conditions:
1313
14-
The above copyright notice and this permission notice shall be included in all
15-
copies or substantial portions of the Software.
14+
The above copyright notice and this permission notice shall be included
15+
in all copies or substantial portions of the Software.
1616
1717
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1818
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
@@ -33,17 +33,16 @@ SOFTWARE.
3333
<artifactId>cmig</artifactId>
3434
<version>1.0-SNAPSHOT</version>
3535
<name>cmig</name>
36-
<description>
37-
Apache Cassandra Schema Migration
38-
</description>
36+
<description>Apache Cassandra Schema Migration</description>
3937
<inceptionYear>2023</inceptionYear>
4038
<url>https://github.com/eo-cqrs/cmig</url>
4139
<developers>
4240
<developer>
4341
<id>1</id>
4442
<name>Aliaksei Bialiauski</name>
45-
<email>abialiauski.dev@gmail.com</email>
43+
<email>aliaksei.bialiauski@hey.com</email>
4644
<url>https://h1alexbel.github.io</url>
45+
<organization>Solvd</organization>
4746
<organizationUrl>https://www.solvd.com</organizationUrl>
4847
<roles>
4948
<role>Architect</role>
@@ -95,11 +94,13 @@ SOFTWARE.
9594
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
9695
<mockito-core.version>5.10.0</mockito-core.version>
9796
<mockito-junit-jupiter.version>5.10.0</mockito-junit-jupiter.version>
98-
<hamcrest-all.version>1.3</hamcrest-all.version>
97+
<hamcrest-core.version>2.2</hamcrest-core.version>
9998
<guava.version>19.0</guava.version>
10099
<test-cassandra.version>1.19.4</test-cassandra.version>
101100
<failsafe.version>3.2.5</failsafe.version>
102101
<unixized.version>1.0.0</unixized.version>
102+
<logback-classic.version>1.4.8</logback-classic.version>
103+
<cactoos-matchers.version>0.25</cactoos-matchers.version>
103104
</properties>
104105
<dependencies>
105106
<dependency>
@@ -147,6 +148,11 @@ SOFTWARE.
147148
<artifactId>slf4j-simple</artifactId>
148149
<version>${slf4j.version}</version>
149150
</dependency>
151+
<dependency>
152+
<groupId>ru.l3r8y</groupId>
153+
<artifactId>unixized</artifactId>
154+
<version>${unixized.version}</version>
155+
</dependency>
150156
<dependency>
151157
<groupId>org.junit.jupiter</groupId>
152158
<artifactId>junit-jupiter-api</artifactId>
@@ -161,19 +167,8 @@ SOFTWARE.
161167
</dependency>
162168
<dependency>
163169
<groupId>org.hamcrest</groupId>
164-
<artifactId>hamcrest-all</artifactId>
165-
<version>${hamcrest-all.version}</version>
166-
<scope>test</scope>
167-
</dependency>
168-
<dependency>
169-
<groupId>ru.l3r8y</groupId>
170-
<artifactId>unixized</artifactId>
171-
<version>${unixized.version}</version>
172-
</dependency>
173-
<dependency>
174-
<groupId>org.assertj</groupId>
175-
<artifactId>assertj-core</artifactId>
176-
<version>${assert4j-core.version}</version>
170+
<artifactId>hamcrest-core</artifactId>
171+
<version>${hamcrest-core.version}</version>
177172
<scope>test</scope>
178173
</dependency>
179174
<dependency>
@@ -188,6 +183,18 @@ SOFTWARE.
188183
<version>${mockito-junit-jupiter.version}</version>
189184
<scope>test</scope>
190185
</dependency>
186+
<dependency>
187+
<groupId>org.llorllale</groupId>
188+
<artifactId>cactoos-matchers</artifactId>
189+
<version>${cactoos-matchers.version}</version>
190+
<scope>test</scope>
191+
<exclusions>
192+
<exclusion>
193+
<groupId>org.cactoos</groupId>
194+
<artifactId>cactoos</artifactId>
195+
</exclusion>
196+
</exclusions>
197+
</dependency>
191198
<dependency>
192199
<groupId>org.testcontainers</groupId>
193200
<artifactId>cassandra</artifactId>
@@ -198,46 +205,41 @@ SOFTWARE.
198205
<build>
199206
<plugins>
200207
<plugin>
201-
<artifactId>maven-surefire-plugin</artifactId>
202-
<version>${maven-surefire-plugin.version}</version>
208+
<groupId>org.apache.maven.plugins</groupId>
209+
<artifactId>maven-compiler-plugin</artifactId>
203210
<configuration>
204-
<includes>
205-
<include>**/*Spec.*</include>
206-
<include>**/*Test.*</include>
207-
</includes>
211+
<source>${maven.compiler.source}</source>
212+
<target>${maven.compiler.target}</target>
208213
</configuration>
209214
</plugin>
210215
<plugin>
211-
<groupId>org.apache.maven.plugins</groupId>
212-
<artifactId>maven-verifier-plugin</artifactId>
213-
<version>${maven-verifier-plugin.version}</version>
216+
<groupId>com.qulice</groupId>
217+
<artifactId>qulice-maven-plugin</artifactId>
218+
<configuration>
219+
<license>file:${basedir}/LICENSE.txt</license>
220+
</configuration>
214221
<executions>
215222
<execution>
216-
<id>main</id>
217-
<phase>package</phase>
218223
<goals>
219-
<goal>verify</goal>
224+
<goal>check</goal>
220225
</goals>
221226
<configuration>
222-
<verificationFile>src/verifier/verifications.xml</verificationFile>
227+
<excludes>
228+
<exclude>duplicatefinder:.*</exclude>
229+
<exclude>dependencies:.*</exclude>
230+
</excludes>
223231
</configuration>
224232
</execution>
225233
</executions>
226234
</plugin>
227235
<plugin>
228-
<groupId>org.apache.maven.plugins</groupId>
229-
<artifactId>maven-failsafe-plugin</artifactId>
230-
<version>${failsafe.version}</version>
231-
<executions>
232-
<execution>
233-
<goals>
234-
<goal>integration-test</goal>
235-
<goal>verify</goal>
236-
</goals>
237-
</execution>
238-
</executions>
236+
<artifactId>maven-surefire-plugin</artifactId>
237+
<version>${maven-surefire-plugin.version}</version>
239238
<configuration>
240-
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
239+
<includes>
240+
<include>**/*Spec.*</include>
241+
<include>**/*Test.*</include>
242+
</includes>
241243
</configuration>
242244
</plugin>
243245
<plugin>
@@ -265,7 +267,7 @@ SOFTWARE.
265267
<limit>
266268
<counter>INSTRUCTION</counter>
267269
<value>COVEREDRATIO</value>
268-
<minimum>0.59</minimum>
270+
<minimum>0.58</minimum>
269271
</limit>
270272
<limit>
271273
<counter>LINE</counter>
@@ -301,23 +303,18 @@ SOFTWARE.
301303
</plugin>
302304
<plugin>
303305
<groupId>org.apache.maven.plugins</groupId>
304-
<artifactId>maven-javadoc-plugin</artifactId>
306+
<artifactId>maven-failsafe-plugin</artifactId>
307+
<version>${failsafe.version}</version>
305308
<executions>
306309
<execution>
307-
<id>javadoc-generate</id>
308-
<phase>test</phase>
309310
<goals>
310-
<goal>javadoc</goal>
311+
<goal>integration-test</goal>
312+
<goal>verify</goal>
311313
</goals>
312314
</execution>
313315
</executions>
314-
</plugin>
315-
<plugin>
316-
<groupId>org.apache.maven.plugins</groupId>
317-
<artifactId>maven-compiler-plugin</artifactId>
318316
<configuration>
319-
<source>${maven.compiler.source}</source>
320-
<target>${maven.compiler.target}</target>
317+
<classesDirectory>${project.build.outputDirectory}</classesDirectory>
321318
</configuration>
322319
</plugin>
323320
<plugin>
@@ -332,6 +329,19 @@ SOFTWARE.
332329
</execution>
333330
</executions>
334331
</plugin>
332+
<plugin>
333+
<groupId>org.apache.maven.plugins</groupId>
334+
<artifactId>maven-javadoc-plugin</artifactId>
335+
<executions>
336+
<execution>
337+
<id>javadoc-generate</id>
338+
<phase>test</phase>
339+
<goals>
340+
<goal>javadoc</goal>
341+
</goals>
342+
</execution>
343+
</executions>
344+
</plugin>
335345
<plugin>
336346
<groupId>ru.l3r8y</groupId>
337347
<artifactId>sa-tan</artifactId>
@@ -346,25 +356,17 @@ SOFTWARE.
346356
</plugin>
347357
<plugin>
348358
<groupId>org.apache.maven.plugins</groupId>
349-
<artifactId>maven-checkstyle-plugin</artifactId>
350-
<version>${maven-checkstyle-plugin.version}</version>
351-
<dependencies>
352-
<dependency>
353-
<groupId>com.puppycrawl.tools</groupId>
354-
<artifactId>checkstyle</artifactId>
355-
<version>${checkstyle.version}</version>
356-
</dependency>
357-
</dependencies>
359+
<artifactId>maven-verifier-plugin</artifactId>
360+
<version>${maven-verifier-plugin.version}</version>
358361
<executions>
359362
<execution>
360-
<id>verify-style</id>
361-
<phase>process-classes</phase>
363+
<id>main</id>
364+
<phase>package</phase>
362365
<goals>
363-
<goal>check</goal>
366+
<goal>verify</goal>
364367
</goals>
365368
<configuration>
366-
<suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression>
367-
<suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation>
369+
<verificationFile>src/verifier/verifications.xml</verificationFile>
368370
</configuration>
369371
</execution>
370372
</executions>

0 commit comments

Comments
 (0)