Skip to content

Commit

Permalink
scm path updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahamed Azeem committed Mar 6, 2020
1 parent 700f71a commit e1df1f0
Show file tree
Hide file tree
Showing 3 changed files with 191 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<scm>
<url>https://github.com/danubetech/verifiable-credentials-java</url>
<connection>scm:git:git://github.com/danubetech/verifiable-credentials-java.git</connection>
<developerConnection>scm:git:git@danubetech/verifiable-credentials-java.git</developerConnection>
<developerConnection>scm:git:git@github.com:danubetech/verifiable-credentials-java.git</developerConnection>
</scm>

<distributionManagement>
Expand All @@ -26,7 +26,7 @@
<url>https://maven.pkg.github.com/danubetech/verifiable-credentials-java</url>
</repository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github</github.global.server>
Expand Down
164 changes: 164 additions & 0 deletions pom.xml.releaseBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>
<groupId>com.danubetech</groupId>
<artifactId>verifiable-credentials-java</artifactId>
<packaging>jar</packaging>
<version>0.2.0-SNAPSHOT</version>
<name>verifiable-credentials-java</name>

<issueManagement>
<url>https://github.com/danubetech/verifiable-credentials-java/issues</url>
<system>GitHub Issues</system>
</issueManagement>

<scm>
<url>https://github.com/danubetech/verifiable-credentials-java</url>
<connection>scm:git:git://github.com/danubetech/verifiable-credentials-java.git</connection>
<developerConnection>scm:git:git@danubetech/verifiable-credentials-java.git</developerConnection>
</scm>

<distributionManagement>
<repository>
<id>github</id>
<name>GitHub danubetech verifiable-credentials-java</name>
<url>https://maven.pkg.github.com/danubetech/verifiable-credentials-java</url>
</repository>
</distributionManagement>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github</github.global.server>
</properties>

<build>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<forkMode>never</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>execution</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
</execution>
</executions>
<configuration>
<includeScope>runtime</includeScope>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<scmReleaseCommitComment>Latest Release @{releaseLabel}</scmReleaseCommitComment>
<pomFileName>pom.xml</pomFileName>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>

</build>

<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>3.2.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.weboftrust</groupId>
<artifactId>ld-signatures-java</artifactId>
<version>0.2.0</version>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>8.2.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.jsonld-java</groupId>
<artifactId>jsonld-java</artifactId>
<version>0.12.0</version>
<scope>compile</scope>
<!-- <exclusions>
<exclusion>
<artifactId>httpcore-osgi</artifactId>
</exclusion>
<exclusion>
<artifactId>httpclient-osgi</artifactId>
</exclusion>
</exclusions> -->
</dependency>
<!-- <dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.25</version>
<scope>compile</scope>
</dependency> -->

</dependencies>

</project>
25 changes: 25 additions & 0 deletions release.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#release configuration
#Fri Mar 06 18:59:33 CET 2020
scm.commentPrefix=[maven-release-plugin]
exec.pomFileName=pom.xml
project.rel.com.danubetech\:verifiable-credentials-java=0.2.0
pushChanges=true
releaseStrategyId=default
project.scm.com.danubetech\:verifiable-credentials-java.connection=scm\:git\:git\://github.com/danubetech/verifiable-credentials-java.git
scm.tag=v0.2.0
remoteTagging=true
scm.branchCommitComment=@{prefix} prepare branch @{releaseLabel}
project.scm.com.danubetech\:verifiable-credentials-java.tag=HEAD
projectVersionPolicyId=default
scm.url=scm\:git\:git@danubetech/verifiable-credentials-java.git
scm.tagNameFormat=v@{project.version}
preparationGoals=clean verify
project.scm.com.danubetech\:verifiable-credentials-java.url=https\://github.com/danubetech/verifiable-credentials-java
scm.releaseCommitComment=Latest Release @{releaseLabel}
project.dev.com.danubetech\:verifiable-credentials-java=0.2.1-SNAPSHOT
exec.snapshotReleasePluginAllowed=false
exec.activateProfiles=github
project.scm.com.danubetech\:verifiable-credentials-java.developerConnection=scm\:git\:git@danubetech/verifiable-credentials-java.git
scm.developmentCommitComment=@{prefix} prepare for next development iteration
scm.rollbackCommitComment=@{prefix} rollback the release of @{releaseLabel}
completedPhase=run-preparation-goals

0 comments on commit e1df1f0

Please sign in to comment.