[JAVA-10581] Changed PII data to placeholders (#12174)

* [JAVA-10581] Changed PII data to placeholders

* [JAVA-10581] More intuitive properties

* [JAVA-10581] More intuitive properties

Co-authored-by: panagiotiskakos <panagiotis.kakos@libra-is.com>
This commit is contained in:
panos-kakos 2022-05-10 15:44:57 +01:00 committed by GitHub
parent 32f4f7d81d
commit 40214dbc4d

View File

@ -6,11 +6,11 @@
<groupId>com.baeldung.maven.plugin</groupId> <groupId>com.baeldung.maven.plugin</groupId>
<artifactId>host-maven-repo-example</artifactId> <artifactId>host-maven-repo-example</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<url>https://github.com/sgrverma23/host-maven-repo-example.git</url> <url>https://github.com/${repository-owner}/${repository-name}.git</url>
<scm> <scm>
<url>https://github.com/sgrverma23/host-maven-repo-example.git</url> <url>https://github.com/${repository-owner}/${repository-name}.git</url>
<connection>scm:git:git@github.com:sgrverma23/host-maven-repo-example.git</connection> <connection>scm:git:git@github.com:${repository-owner}/${repository-name}.git</connection>
<developerConnection>scm:git:git@github.com:sgrverma23/host-maven-repo-example.git</developerConnection> <developerConnection>scm:git:git@github.com:${repository-owner}/${repository-name}.git</developerConnection>
</scm> </scm>
<distributionManagement> <distributionManagement>
<repository> <repository>
@ -43,13 +43,13 @@
<message>Maven artifacts for ${project.version}</message> <message>Maven artifacts for ${project.version}</message>
<noJekyll>true</noJekyll> <noJekyll>true</noJekyll>
<outputDirectory>${project.build.directory}</outputDirectory> <outputDirectory>${project.build.directory}</outputDirectory>
<branch>refs/heads/main</branch> <branch>refs/heads/${branch-name}</branch>
<includes> <includes>
<include>**/*</include> <include>**/*</include>
</includes> </includes>
<merge>true</merge> <merge>true</merge>
<repositoryName>host-maven-repo-example</repositoryName> <repositoryName>${repository-name}</repositoryName>
<repositoryOwner>sgrverma23</repositoryOwner> <repositoryOwner>${repository-owner}</repositoryOwner>
<server>github</server> <server>github</server>
</configuration> </configuration>
<executions> <executions>
@ -89,7 +89,7 @@
<repositories> <repositories>
<repository> <repository>
<id>PROJECT-REPO-URL</id> <id>PROJECT-REPO-URL</id>
<url>https://github.com/sgrverma23/host-maven-repo-example/main</url> <url>https://github.com/{repository-owner}/${repository-name}/${branch-name}</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
<updatePolicy>always</updatePolicy> <updatePolicy>always</updatePolicy>
@ -98,6 +98,10 @@
</repositories> </repositories>
<properties> <properties>
<!--Put your own properties-->
<repository-owner>Put-repo-owner</repository-owner>
<repository-name>Put-repository-name</repository-name>
<branch-name>Put-branch-name</branch-name>
<github.global.server>github</github.global.server> <github.global.server>github</github.global.server>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target> <maven.compiler.target>8</maven.compiler.target>