[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:
parent
32f4f7d81d
commit
40214dbc4d
|
@ -6,11 +6,11 @@
|
|||
<groupId>com.baeldung.maven.plugin</groupId>
|
||||
<artifactId>host-maven-repo-example</artifactId>
|
||||
<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>
|
||||
<url>https://github.com/sgrverma23/host-maven-repo-example.git</url>
|
||||
<connection>scm:git:git@github.com:sgrverma23/host-maven-repo-example.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:sgrverma23/host-maven-repo-example.git</developerConnection>
|
||||
<url>https://github.com/${repository-owner}/${repository-name}.git</url>
|
||||
<connection>scm:git:git@github.com:${repository-owner}/${repository-name}.git</connection>
|
||||
<developerConnection>scm:git:git@github.com:${repository-owner}/${repository-name}.git</developerConnection>
|
||||
</scm>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
@ -43,13 +43,13 @@
|
|||
<message>Maven artifacts for ${project.version}</message>
|
||||
<noJekyll>true</noJekyll>
|
||||
<outputDirectory>${project.build.directory}</outputDirectory>
|
||||
<branch>refs/heads/main</branch>
|
||||
<branch>refs/heads/${branch-name}</branch>
|
||||
<includes>
|
||||
<include>**/*</include>
|
||||
</includes>
|
||||
<merge>true</merge>
|
||||
<repositoryName>host-maven-repo-example</repositoryName>
|
||||
<repositoryOwner>sgrverma23</repositoryOwner>
|
||||
<repositoryName>${repository-name}</repositoryName>
|
||||
<repositoryOwner>${repository-owner}</repositoryOwner>
|
||||
<server>github</server>
|
||||
</configuration>
|
||||
<executions>
|
||||
|
@ -89,7 +89,7 @@
|
|||
<repositories>
|
||||
<repository>
|
||||
<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>
|
||||
<enabled>true</enabled>
|
||||
<updatePolicy>always</updatePolicy>
|
||||
|
@ -98,6 +98,10 @@
|
|||
</repositories>
|
||||
|
||||
<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>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
|
|
Loading…
Reference in New Issue