Skip to content

Commit e9ca6f8

Browse files
author
rafwin
committed
[maven-release-plugin] prepare release byte-buddy-0.3.1
1 parent d2507dd commit e9ca6f8

File tree

5 files changed

+15
-23
lines changed

5 files changed

+15
-23
lines changed

byte-buddy-agent/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<artifactId>byte-buddy-parent</artifactId>
87
<groupId>net.bytebuddy</groupId>
9-
<version>0.4-SNAPSHOT</version>
8+
<version>0.3.1</version>
109
</parent>
1110

1211
<artifactId>byte-buddy-agent</artifactId>

byte-buddy-benchmark/pom.xml

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<parent>
54
<artifactId>byte-buddy-parent</artifactId>
65
<groupId>net.bytebuddy</groupId>
7-
<version>0.4-SNAPSHOT</version>
6+
<version>0.3.1</version>
87
</parent>
98
<modelVersion>4.0.0</modelVersion>
109

@@ -75,8 +74,7 @@
7574
</goals>
7675
<configuration>
7776
<transformers>
78-
<transformer
79-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
77+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
8078
<mainClass>org.openjdk.jmh.Main</mainClass>
8179
</transformer>
8280
</transformers>

byte-buddy-dep/pom.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>net.bytebuddy</groupId>
87
<artifactId>byte-buddy-parent</artifactId>
9-
<version>0.4-SNAPSHOT</version>
8+
<version>0.3.1</version>
109
</parent>
1110

1211
<artifactId>byte-buddy-dep</artifactId>

byte-buddy/pom.xml

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>net.bytebuddy</groupId>
87
<artifactId>byte-buddy-parent</artifactId>
9-
<version>0.4-SNAPSHOT</version>
8+
<version>0.3.1</version>
109
</parent>
1110

1211
<artifactId>byte-buddy</artifactId>
@@ -78,8 +77,7 @@
7877
</relocation>
7978
</relocations>
8079
<transformers>
81-
<transformer
82-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
80+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
8381
<manifestEntries>
8482
<Bundle-SymbolicName>
8583
${project.groupId}.${project.artifactId}
@@ -109,8 +107,7 @@
109107
</goals>
110108
<configuration>
111109
<target>
112-
<copy file="${project.basedir}/../byte-buddy-dep/target/byte-buddy-dep-${project.version}-javadoc.jar"
113-
tofile="${project.build.directory}/byte-buddy-${project.version}-javadoc.jar"/>
110+
<copy file="${project.basedir}/../byte-buddy-dep/target/byte-buddy-dep-${project.version}-javadoc.jar" tofile="${project.build.directory}/byte-buddy-${project.version}-javadoc.jar" />
114111
</target>
115112
</configuration>
116113
</execution>

pom.xml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<groupId>net.bytebuddy</groupId>
76
<artifactId>byte-buddy-parent</artifactId>
8-
<version>0.4-SNAPSHOT</version>
7+
<version>0.3.1</version>
98
<packaging>pom</packaging>
109

1110
<inceptionYear>2014</inceptionYear>
@@ -87,7 +86,7 @@
8786
<connection>scm:git:[email protected]:raphw/byte-buddy.git</connection>
8887
<developerConnection>scm:git:[email protected]:raphw/byte-buddy.git</developerConnection>
8988
<url>[email protected]:raphw/byte-buddy.git</url>
90-
<tag>HEAD</tag>
89+
<tag>byte-buddy-0.3.1</tag>
9190
</scm>
9291

9392
<dependencyManagement>
@@ -150,7 +149,7 @@
150149
<format>html</format>
151150
<format>xml</format>
152151
</formats>
153-
<check/>
152+
<check />
154153
</configuration>
155154
</plugin>
156155
<!-- Generate coveralls reports from Travis -->

0 commit comments

Comments
 (0)