Skip to content

Commit e80083a

Browse files
committed
[maven-release-plugin] prepare release rel/0.1.0.rc1
1 parent 9bc4f43 commit e80083a

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

log4j-transform-maven-plugin/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,17 @@
2020
<parent>
2121
<groupId>org.apache.logging.log4j</groupId>
2222
<artifactId>log4j-transform-parent</artifactId>
23-
<version>${revision}</version>
23+
<version>0.1.0</version>
2424
<relativePath>../log4j-transform-parent</relativePath>
2525
</parent>
2626
<artifactId>log4j-transform-maven-plugin</artifactId>
2727
<packaging>maven-plugin</packaging>
2828
<name>Apache Log4j Transform Maven plugin</name>
2929
<description>The Apache Log4j Transform Maven plugin</description>
30+
31+
<scm>
32+
<tag>rel/0.1.0.rc1</tag>
33+
</scm>
3034
<dependencies>
3135
<dependency>
3236
<groupId>org.apache.logging.log4j</groupId>

log4j-transform-maven-shade-plugin-extensions/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,17 @@
2020
<parent>
2121
<groupId>org.apache.logging.log4j</groupId>
2222
<artifactId>log4j-transform-parent</artifactId>
23-
<version>${revision}</version>
23+
<version>0.1.0</version>
2424
<relativePath>../log4j-transform-parent</relativePath>
2525
</parent>
2626
<artifactId>log4j-transform-maven-shade-plugin-extensions</artifactId>
2727
<packaging>jar</packaging>
2828
<name>Apache Log4j Maven Shade Plugin Transformer</name>
2929
<description>Transformer implementation to concatenate Log4j2Plugins.dat files</description>
30+
31+
<scm>
32+
<tag>rel/0.1.0.rc1</tag>
33+
</scm>
3034
<properties>
3135
<docLabel>Shaded Plugin Log4j2 Transformer</docLabel>
3236
<maven.doap.skip>true</maven.doap.skip>

log4j-transform-parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.apache.logging.log4j</groupId>
2222
<artifactId>log4j-transform-bom</artifactId>
23-
<version>${revision}</version>
23+
<version>0.1.0</version>
2424
</parent>
2525
<artifactId>log4j-transform-parent</artifactId>
2626
<packaging>pom</packaging>
@@ -30,7 +30,7 @@
3030
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
3131
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3232
<!-- `project.build.outputTimestamp` is required for reproducible builds: https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
33-
<project.build.outputTimestamp>0</project.build.outputTimestamp>
33+
<project.build.outputTimestamp>1682714623</project.build.outputTimestamp>
3434
<!-- disable `maven-site-plugin`-->
3535
<maven.site.skip>true</maven.site.skip>
3636
<maven.site.deploy.skip>true</maven.site.deploy.skip>

log4j-weaver/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@
2020
<parent>
2121
<groupId>org.apache.logging.log4j</groupId>
2222
<artifactId>log4j-transform-parent</artifactId>
23-
<version>${revision}</version>
23+
<version>0.1.0</version>
2424
<relativePath>../log4j-transform-parent</relativePath>
2525
</parent>
2626
<artifactId>log4j-weaver</artifactId>
2727
<name>Apache Log4j Weaving Tools</name>
2828
<description>The Apache Log4j Weaving Tools for logging frameworks</description>
29+
30+
<scm>
31+
<tag>rel/0.1.0.rc1</tag>
32+
</scm>
2933
<dependencies>
3034
<dependency>
3135
<groupId>org.ow2.asm</groupId>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</parent>
3333
<groupId>org.apache.logging.log4j</groupId>
3434
<artifactId>log4j-transform-bom</artifactId>
35-
<version>${revision}</version>
35+
<version>0.1.0</version>
3636
<packaging>pom</packaging>
3737
<url>https://github.com/apache/logging-log4j-transform</url>
3838
<inceptionYear>2022</inceptionYear>
@@ -69,7 +69,7 @@
6969
<scm>
7070
<connection>scm:git:git@github.com:apache/logging-log4j-transform.git</connection>
7171
<developerConnection>scm:git:git@github.com:apache/logging-log4j-transform.git</developerConnection>
72-
<tag>HEAD</tag>
72+
<tag>rel/0.1.0.rc1</tag>
7373
<url>https://github.com/apache/logging-log4j-transform</url>
7474
</scm>
7575
<issueManagement>
@@ -86,7 +86,7 @@
8686
</distributionManagement>
8787
<properties>
8888
<!-- project version -->
89-
<revision>0.1.0-SNAPSHOT</revision>
89+
<revision>0.1.0</revision>
9090
<!-- `minimalJavaBuildVersion` is employed by `org.apache:apache`,
9191
which is the parent of `org.apache.logging:logging-parent`, which is the parent of us.
9292
`minimalJavaBuildVersion` is used for enforcing the compiler version.
@@ -95,7 +95,7 @@
9595
<minimalJavaBuildVersion>[17,18)</minimalJavaBuildVersion>
9696
<java.version>8</java.version>
9797
<!-- `project.build.outputTimestamp` is required for reproducible builds: https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
98-
<project.build.outputTimestamp>1682712801</project.build.outputTimestamp>
98+
<project.build.outputTimestamp>1682714623</project.build.outputTimestamp>
9999
<!-- plugin versions -->
100100
<flatten-maven-plugin.version>1.4.1</flatten-maven-plugin.version>
101101
<sign-maven-plugin.version>1.0.1</sign-maven-plugin.version>

0 commit comments

Comments
 (0)