Skip to content

Commit 0acab67

Browse files
committed
#337 parent up
1 parent bbbe813 commit 0acab67

File tree

3 files changed

+6
-75
lines changed

3 files changed

+6
-75
lines changed

.rultor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
docker:
2+
image: yegor256/rultor-image:1.9.1
13
architect:
24
- yegor256
35
- andreoss
@@ -13,8 +15,7 @@ merge:
1315
release:
1416
pre: false
1517
script: |-
16-
env
17-
export JAVA_HOME=/usr/lib/jvm/default-java
18+
[[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1
1819
mvn versions:set "-DnewVersion=${tag}" --batch-mode
1920
git commit -am "${tag}"
2021
mvn clean deploy -Pqulice -Psonatype -Pjcabi --batch-mode --errors --settings ../settings.xml

pom.xml

Lines changed: 1 addition & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
3333
<parent>
3434
<groupId>com.jcabi</groupId>
3535
<artifactId>jcabi</artifactId>
36-
<version>1.30.0</version>
36+
<version>1.33.0</version>
3737
</parent>
3838
<artifactId>jcabi-http</artifactId>
3939
<version>2.0-SNAPSHOT</version>
@@ -319,13 +319,6 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
319319
</dependencyManagement>
320320
<build>
321321
<plugins>
322-
<plugin>
323-
<artifactId>maven-compiler-plugin</artifactId>
324-
<configuration>
325-
<source>1.8</source>
326-
<target>1.8</target>
327-
</configuration>
328-
</plugin>
329322
<plugin>
330323
<artifactId>maven-failsafe-plugin</artifactId>
331324
<executions>
@@ -337,69 +330,6 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
337330
</execution>
338331
</executions>
339332
</plugin>
340-
<plugin>
341-
<groupId>org.jacoco</groupId>
342-
<artifactId>jacoco-maven-plugin</artifactId>
343-
<configuration>
344-
<output>file</output>
345-
<outputDirectory>${project.build.directory}/coverage</outputDirectory>
346-
</configuration>
347-
<executions>
348-
<execution>
349-
<id>jacoco-initialize</id>
350-
<goals>
351-
<goal>prepare-agent</goal>
352-
</goals>
353-
</execution>
354-
<execution>
355-
<id>jacoco-check</id>
356-
<phase>test</phase>
357-
<goals>
358-
<goal>check</goal>
359-
<goal>report</goal>
360-
</goals>
361-
<configuration>
362-
<rules>
363-
<rule>
364-
<element>BUNDLE</element>
365-
<limits>
366-
<limit>
367-
<counter>INSTRUCTION</counter>
368-
<value>COVEREDRATIO</value>
369-
<minimum>0.62</minimum>
370-
</limit>
371-
<limit>
372-
<counter>LINE</counter>
373-
<value>COVEREDRATIO</value>
374-
<minimum>0.82</minimum>
375-
</limit>
376-
<limit>
377-
<counter>BRANCH</counter>
378-
<value>COVEREDRATIO</value>
379-
<minimum>0.33</minimum>
380-
</limit>
381-
<limit>
382-
<counter>COMPLEXITY</counter>
383-
<value>COVEREDRATIO</value>
384-
<minimum>0.44</minimum>
385-
</limit>
386-
<limit>
387-
<counter>METHOD</counter>
388-
<value>COVEREDRATIO</value>
389-
<minimum>0.64</minimum>
390-
</limit>
391-
<limit>
392-
<counter>CLASS</counter>
393-
<value>MISSEDCOUNT</value>
394-
<maximum>1</maximum>
395-
</limit>
396-
</limits>
397-
</rule>
398-
</rules>
399-
</configuration>
400-
</execution>
401-
</executions>
402-
</plugin>
403333
</plugins>
404334
</build>
405335
<profiles>

src/site/site.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
3737
<bannerLeft>
3838
<name>jcabi</name>
3939
<src>https://www.jcabi.com/logo-square.svg</src>
40-
<href>http://www.jcabi.com/</href>
40+
<href>https://www.jcabi.com/</href>
4141
<width>64</width>
4242
<height>64</height>
4343
</bannerLeft>
@@ -50,7 +50,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
5050
<menu name="Overview">
5151
<item name="Introduction" href="index.html"/>
5252
<item name="JavaDoc ${project.version}" href="./apidocs-${project.version}/index.html"/>
53-
<item name="Test coverage" href="./cobertura/index.html"/>
53+
<item name="Test coverage" href="./jacoco/index.html"/>
5454
<item name="Release History" href="https://github.com/jcabi/jcabi-http/releases"/>
5555
</menu>
5656
<menu name="Best Practices">

0 commit comments

Comments
 (0)