Skip to content

Commit d5be48c

Browse files
committed
added the release properties for future refrence
1 parent 8586165 commit d5be48c

File tree

2 files changed

+158
-0
lines changed

2 files changed

+158
-0
lines changed

pom.xml.releaseBackup

+133
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<project xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
8+
<groupId>com.serenitydojo</groupId>
9+
<artifactId>java-for-testers</artifactId>
10+
<version>1.0.0-SNAPSHOT</version>
11+
<packaging>jar</packaging>
12+
<name>java-for-testers</name>
13+
<url>https://expansion.serenity-dojo.com/courses/take/java-for-testers-and-test-automation</url>
14+
15+
<distributionManagement>
16+
<repository>
17+
<id>github</id>
18+
<name>GitHub abhinay5993 Java For SDET</name>
19+
<url>https://maven.pkg.github.com/abhinay5993/java-for-testers</url>
20+
</repository>
21+
</distributionManagement>
22+
23+
<developers>
24+
<developer>
25+
<name>abhinay5993</name>
26+
<email>abhinaylunawat5993@gmail.com</email>
27+
<organizationUrl>https://github.com/abhinay5993/java-for-testers</organizationUrl>
28+
</developer>
29+
</developers>
30+
31+
<scm>
32+
<connection>scm:git:git://github.com/abhinay5993/java-for-testers.git</connection>
33+
<developerConnection>scm:git:https://github.com/abhinay5993/java-for-testers.git</developerConnection>
34+
<url>https://github.com/abhinay5993/java-for-testers</url>
35+
<tag>java-for-SDET-autodeployed-v</tag>
36+
</scm>
37+
38+
<properties>
39+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40+
<maven.compiler.source>1.8</maven.compiler.source>
41+
<maven.compiler.target>1.8</maven.compiler.target>
42+
</properties>
43+
44+
<dependencies>
45+
<dependency>
46+
<groupId>junit</groupId>
47+
<artifactId>junit</artifactId>
48+
<version>4.13</version>
49+
<scope>test</scope>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.testng</groupId>
53+
<artifactId>testng</artifactId>
54+
<version>7.8.0</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.assertj</groupId>
58+
<artifactId>assertj-core</artifactId>
59+
<version>3.23.1</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.hamcrest</groupId>
63+
<artifactId>hamcrest-all</artifactId>
64+
<version>1.3</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>com.google.guava</groupId>
68+
<artifactId>guava</artifactId>
69+
<version>30.0-jre</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.apache.commons</groupId>
73+
<artifactId>commons-text</artifactId>
74+
<version>1.8</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>pl.pragmatists</groupId>
78+
<artifactId>JUnitParams</artifactId>
79+
<version>1.0.5</version>
80+
<scope>test</scope>
81+
</dependency>
82+
</dependencies>
83+
84+
<build>
85+
<pluginManagement>
86+
<plugins>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-plugin-plugin</artifactId>
90+
<version>3.6.0</version>
91+
<configuration>
92+
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
93+
</configuration>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.apache.maven.plugins</groupId>
97+
<artifactId>maven-site-plugin</artifactId>
98+
<version>3.9.1</version>
99+
</plugin>
100+
</plugins>
101+
</pluginManagement>
102+
<plugins>
103+
<plugin>
104+
<artifactId>maven-compiler-plugin</artifactId>
105+
<version>3.8.1</version>
106+
<configuration>
107+
<source>21</source>
108+
<target>21</target>
109+
<release>21</release>
110+
</configuration>
111+
</plugin>
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-surefire-plugin</artifactId>
115+
<version>2.22.1</version>
116+
<configuration>
117+
<includes>
118+
<include>**/*.java</include>
119+
<include>**/*Tests.java</include>
120+
</includes>
121+
<suiteXmlFiles>
122+
<defaultSuiteXmlFile>src/test/resources/testSuites/TestNgTCs_Executions_TestSuite.xml</defaultSuiteXmlFile>
123+
</suiteXmlFiles>
124+
</configuration>
125+
</plugin>
126+
<plugin>
127+
<groupId>org.apache.maven.plugins</groupId>
128+
<artifactId>maven-release-plugin</artifactId>
129+
<version>3.0.0-M1</version>
130+
</plugin>
131+
</plugins>
132+
</build>
133+
</project>

release.properties

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#release configuration
2+
#Sat Apr 20 12:53:33 IST 2024
3+
completedPhase=end-release
4+
exec.activateProfiles=github
5+
exec.pomFileName=pom.xml
6+
exec.snapshotReleasePluginAllowed=false
7+
preparationGoals=clean verify
8+
project.dev.com.serenitydojo\:java-for-testers=1.0.1-SNAPSHOT
9+
project.rel.com.serenitydojo\:java-for-testers=1.0.0
10+
project.scm.com.serenitydojo\:java-for-testers.connection=scm\:git\:git\://github.com/abhinay5993/java-for-testers.git
11+
project.scm.com.serenitydojo\:java-for-testers.developerConnection=scm\:git\:https\://github.com/abhinay5993/java-for-testers.git
12+
project.scm.com.serenitydojo\:java-for-testers.tag=java-for-SDET-autodeployed-v
13+
project.scm.com.serenitydojo\:java-for-testers.url=https\://github.com/abhinay5993/java-for-testers
14+
projectVersionPolicyId=default
15+
pushChanges=true
16+
releaseStrategyId=default
17+
remoteTagging=true
18+
scm.branchCommitComment=@{prefix} prepare branch @{releaseLabel}
19+
scm.commentPrefix=[maven-release-plugin]
20+
scm.developmentCommitComment=@{prefix} prepare for next development iteration
21+
scm.releaseCommitComment=@{prefix} prepare release @{releaseLabel}
22+
scm.rollbackCommitComment=@{prefix} rollback the release of @{releaseLabel}
23+
scm.tag=java-for-testers-1.0.0
24+
scm.tagNameFormat=@{project.artifactId}-@{project.version}
25+
scm.url=scm\:git\:https\://github.com/abhinay5993/java-for-testers.git

0 commit comments

Comments
 (0)