Skip to content

Commit bce5448

Browse files
committed
raising version to 1.0.2-SNAPSHOT, next snapshot version development
1 parent 030ca9f commit bce5448

1 file changed

Lines changed: 24 additions & 44 deletions

File tree

pom.xml

Lines changed: 24 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<url>https://github.com/vikadata/vika.java</url>
1313

1414
<properties>
15-
<revision>1.0.1</revision>
15+
<revision>1.0.2-SNAPSHOT</revision>
1616
<java.version>1.8</java.version>
1717
<maven.compiler.source>${java.version}</maven.compiler.source>
1818
<maven.compiler.target>${java.version}</maven.compiler.target>
@@ -463,36 +463,39 @@
463463
<id>local-release</id>
464464
<properties>
465465
<maven.test.skip>true</maven.test.skip>
466+
<!--using local variable-->
467+
<gpg.executable>gpg</gpg.executable>
468+
<!--suppress UnresolvedMavenProperty -->
469+
<gpg.keyname>${GPG_KEY_NAME}</gpg.keyname>
470+
<!--suppress UnresolvedMavenProperty -->
471+
<gpg.passphrase>${GPG_PASSPHRASE}</gpg.passphrase>
466472
</properties>
467473
<build>
468474
<plugins>
469475
<plugin>
470-
<groupId>org.jacoco</groupId>
471-
<artifactId>jacoco-maven-plugin</artifactId>
476+
<groupId>org.apache.maven.plugins</groupId>
477+
<artifactId>maven-source-plugin</artifactId>
472478
<executions>
473-
<!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as
474-
VM argument when Maven the Surefire plugin is executed. -->
475479
<execution>
476-
<id>pre-unit-test</id>
480+
<id>attach-sources</id>
477481
<goals>
478-
<goal>prepare-agent</goal>
482+
<goal>jar-no-fork</goal>
479483
</goals>
480484
</execution>
481-
<!-- Ensures that the code coverage report for unit tests is created after unit tests have
482-
been run. -->
485+
</executions>
486+
</plugin>
487+
<plugin>
488+
<groupId>org.apache.maven.plugins</groupId>
489+
<artifactId>maven-javadoc-plugin</artifactId>
490+
<executions>
483491
<execution>
484-
<id>post-unit-test</id>
485-
<phase>test</phase>
492+
<id>attach-javadocs</id>
486493
<goals>
487-
<goal>report</goal>
494+
<goal>jar</goal>
488495
</goals>
489496
</execution>
490497
</executions>
491498
</plugin>
492-
<plugin>
493-
<groupId>org.eluder.coveralls</groupId>
494-
<artifactId>coveralls-maven-plugin</artifactId>
495-
</plugin>
496499
<plugin>
497500
<groupId>org.apache.maven.plugins</groupId>
498501
<artifactId>maven-deploy-plugin</artifactId>
@@ -503,7 +506,7 @@
503506
<plugin>
504507
<groupId>org.apache.maven.plugins</groupId>
505508
<artifactId>maven-gpg-plugin</artifactId>
506-
<version>1.6</version>
509+
<version>${maven-gpg-plugin.version}</version>
507510
<executions>
508511
<execution>
509512
<id>sign-artifacts</id>
@@ -517,6 +520,7 @@
517520
<plugin>
518521
<groupId>org.sonatype.plugins</groupId>
519522
<artifactId>nexus-staging-maven-plugin</artifactId>
523+
<extensions>true</extensions>
520524
<executions>
521525
<execution>
522526
<id>deploy-to-sonatype</id>
@@ -529,6 +533,7 @@
529533
<configuration>
530534
<serverId>sonatype-release</serverId>
531535
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
536+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
532537
</configuration>
533538
</plugin>
534539
</plugins>
@@ -541,33 +546,6 @@
541546
</properties>
542547
<build>
543548
<plugins>
544-
<plugin>
545-
<groupId>org.jacoco</groupId>
546-
<artifactId>jacoco-maven-plugin</artifactId>
547-
<executions>
548-
<!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as
549-
VM argument when Maven the Surefire plugin is executed. -->
550-
<execution>
551-
<id>pre-unit-test</id>
552-
<goals>
553-
<goal>prepare-agent</goal>
554-
</goals>
555-
</execution>
556-
<!-- Ensures that the code coverage report for unit tests is created after unit tests have
557-
been run. -->
558-
<execution>
559-
<id>post-unit-test</id>
560-
<phase>test</phase>
561-
<goals>
562-
<goal>report</goal>
563-
</goals>
564-
</execution>
565-
</executions>
566-
</plugin>
567-
<plugin>
568-
<groupId>org.eluder.coveralls</groupId>
569-
<artifactId>coveralls-maven-plugin</artifactId>
570-
</plugin>
571549
<plugin>
572550
<groupId>org.apache.maven.plugins</groupId>
573551
<artifactId>maven-deploy-plugin</artifactId>
@@ -578,6 +556,7 @@
578556
<plugin>
579557
<groupId>org.sonatype.plugins</groupId>
580558
<artifactId>nexus-staging-maven-plugin</artifactId>
559+
<extensions>true</extensions>
581560
<executions>
582561
<execution>
583562
<id>deploy-to-sonatype</id>
@@ -590,6 +569,7 @@
590569
<configuration>
591570
<serverId>sonatype-release</serverId>
592571
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
572+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
593573
</configuration>
594574
</plugin>
595575
</plugins>

0 commit comments

Comments
 (0)