Skip to content

Commit e1df1f0

Browse files
author
Ahamed Azeem
committed
scm path updated
1 parent 700f71a commit e1df1f0

File tree

3 files changed

+191
-2
lines changed

3 files changed

+191
-2
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<scm>
1717
<url>https://github.com/danubetech/verifiable-credentials-java</url>
1818
<connection>scm:git:git://github.com/danubetech/verifiable-credentials-java.git</connection>
19-
<developerConnection>scm:git:git@danubetech/verifiable-credentials-java.git</developerConnection>
19+
<developerConnection>scm:git:git@github.com:danubetech/verifiable-credentials-java.git</developerConnection>
2020
</scm>
2121

2222
<distributionManagement>
@@ -26,7 +26,7 @@
2626
<url>https://maven.pkg.github.com/danubetech/verifiable-credentials-java</url>
2727
</repository>
2828
</distributionManagement>
29-
29+
3030
<properties>
3131
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3232
<github.global.server>github</github.global.server>

pom.xml.releaseBackup

Lines changed: 164 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.danubetech</groupId>
6+
<artifactId>verifiable-credentials-java</artifactId>
7+
<packaging>jar</packaging>
8+
<version>0.2.0-SNAPSHOT</version>
9+
<name>verifiable-credentials-java</name>
10+
11+
<issueManagement>
12+
<url>https://github.com/danubetech/verifiable-credentials-java/issues</url>
13+
<system>GitHub Issues</system>
14+
</issueManagement>
15+
16+
<scm>
17+
<url>https://github.com/danubetech/verifiable-credentials-java</url>
18+
<connection>scm:git:git://github.com/danubetech/verifiable-credentials-java.git</connection>
19+
<developerConnection>scm:git:git@danubetech/verifiable-credentials-java.git</developerConnection>
20+
</scm>
21+
22+
<distributionManagement>
23+
<repository>
24+
<id>github</id>
25+
<name>GitHub danubetech verifiable-credentials-java</name>
26+
<url>https://maven.pkg.github.com/danubetech/verifiable-credentials-java</url>
27+
</repository>
28+
</distributionManagement>
29+
30+
<properties>
31+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
32+
<github.global.server>github</github.global.server>
33+
</properties>
34+
35+
<build>
36+
37+
<plugins>
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-compiler-plugin</artifactId>
41+
<version>3.8.1</version>
42+
<configuration>
43+
<source>1.8</source>
44+
<target>1.8</target>
45+
</configuration>
46+
</plugin>
47+
<plugin>
48+
<groupId>org.apache.maven.plugins</groupId>
49+
<artifactId>maven-source-plugin</artifactId>
50+
<version>3.0.1</version>
51+
<executions>
52+
<execution>
53+
<goals>
54+
<goal>jar-no-fork</goal>
55+
</goals>
56+
</execution>
57+
</executions>
58+
</plugin>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-surefire-plugin</artifactId>
62+
<version>2.22.2</version>
63+
<configuration>
64+
<forkMode>never</forkMode>
65+
</configuration>
66+
</plugin>
67+
<plugin>
68+
<groupId>org.apache.maven.plugins</groupId>
69+
<artifactId>maven-dependency-plugin</artifactId>
70+
<version>3.1.1</version>
71+
<executions>
72+
<execution>
73+
<id>execution</id>
74+
<phase>package</phase>
75+
<goals>
76+
<goal>copy-dependencies</goal>
77+
</goals>
78+
</execution>
79+
</executions>
80+
<configuration>
81+
<includeScope>runtime</includeScope>
82+
</configuration>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-release-plugin</artifactId>
87+
<version>3.0.0-M1</version>
88+
<configuration>
89+
<tagNameFormat>v@{project.version}</tagNameFormat>
90+
<scmReleaseCommitComment>Latest Release @{releaseLabel}</scmReleaseCommitComment>
91+
<pomFileName>pom.xml</pomFileName>
92+
</configuration>
93+
<dependencies>
94+
<dependency>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-scm-plugin</artifactId>
97+
<version>1.8.1</version>
98+
</dependency>
99+
</dependencies>
100+
</plugin>
101+
</plugins>
102+
103+
</build>
104+
105+
<dependencies>
106+
<dependency>
107+
<groupId>org.junit.jupiter</groupId>
108+
<artifactId>junit-jupiter-engine</artifactId>
109+
<version>5.6.0</version>
110+
<scope>test</scope>
111+
</dependency>
112+
<dependency>
113+
<groupId>org.junit.jupiter</groupId>
114+
<artifactId>junit-jupiter</artifactId>
115+
<version>5.6.0</version>
116+
<scope>test</scope>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.mockito</groupId>
120+
<artifactId>mockito-core</artifactId>
121+
<version>3.2.4</version>
122+
<scope>test</scope>
123+
</dependency>
124+
<dependency>
125+
<groupId>org.mockito</groupId>
126+
<artifactId>mockito-junit-jupiter</artifactId>
127+
<version>3.2.4</version>
128+
<scope>test</scope>
129+
</dependency>
130+
<dependency>
131+
<groupId>info.weboftrust</groupId>
132+
<artifactId>ld-signatures-java</artifactId>
133+
<version>0.2.0</version>
134+
</dependency>
135+
<dependency>
136+
<groupId>com.nimbusds</groupId>
137+
<artifactId>nimbus-jose-jwt</artifactId>
138+
<version>8.2.1</version>
139+
<scope>compile</scope>
140+
</dependency>
141+
<dependency>
142+
<groupId>com.github.jsonld-java</groupId>
143+
<artifactId>jsonld-java</artifactId>
144+
<version>0.12.0</version>
145+
<scope>compile</scope>
146+
<!-- <exclusions>
147+
<exclusion>
148+
<artifactId>httpcore-osgi</artifactId>
149+
</exclusion>
150+
<exclusion>
151+
<artifactId>httpclient-osgi</artifactId>
152+
</exclusion>
153+
</exclusions> -->
154+
</dependency>
155+
<!-- <dependency>
156+
<groupId>org.slf4j</groupId>
157+
<artifactId>slf4j-nop</artifactId>
158+
<version>1.7.25</version>
159+
<scope>compile</scope>
160+
</dependency> -->
161+
162+
</dependencies>
163+
164+
</project>

release.properties

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#release configuration
2+
#Fri Mar 06 18:59:33 CET 2020
3+
scm.commentPrefix=[maven-release-plugin]
4+
exec.pomFileName=pom.xml
5+
project.rel.com.danubetech\:verifiable-credentials-java=0.2.0
6+
pushChanges=true
7+
releaseStrategyId=default
8+
project.scm.com.danubetech\:verifiable-credentials-java.connection=scm\:git\:git\://github.com/danubetech/verifiable-credentials-java.git
9+
scm.tag=v0.2.0
10+
remoteTagging=true
11+
scm.branchCommitComment=@{prefix} prepare branch @{releaseLabel}
12+
project.scm.com.danubetech\:verifiable-credentials-java.tag=HEAD
13+
projectVersionPolicyId=default
14+
scm.url=scm\:git\:git@danubetech/verifiable-credentials-java.git
15+
scm.tagNameFormat=v@{project.version}
16+
preparationGoals=clean verify
17+
project.scm.com.danubetech\:verifiable-credentials-java.url=https\://github.com/danubetech/verifiable-credentials-java
18+
scm.releaseCommitComment=Latest Release @{releaseLabel}
19+
project.dev.com.danubetech\:verifiable-credentials-java=0.2.1-SNAPSHOT
20+
exec.snapshotReleasePluginAllowed=false
21+
exec.activateProfiles=github
22+
project.scm.com.danubetech\:verifiable-credentials-java.developerConnection=scm\:git\:git@danubetech/verifiable-credentials-java.git
23+
scm.developmentCommitComment=@{prefix} prepare for next development iteration
24+
scm.rollbackCommitComment=@{prefix} rollback the release of @{releaseLabel}
25+
completedPhase=run-preparation-goals

0 commit comments

Comments
 (0)