Skip to content

Commit a4ac502

Browse files
author
Maxime Gréau
committed
[maven-release-plugin] prepare release v0.1.0
1 parent be4248b commit a4ac502

File tree

10 files changed

+24
-41
lines changed

10 files changed

+24
-41
lines changed

apm-agent-api/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>apm-agent-parent</artifactId>
75
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
6+
<version>0.1.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

apm-agent-benchmarks/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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
<parent>
65
<artifactId>apm-agent-parent</artifactId>
76
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
7+
<version>0.1.0</version>
98
</parent>
109

1110
<artifactId>apm-agent-benchmarks</artifactId>

apm-agent-core/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<modelVersion>4.0.0</modelVersion>
64
<properties>
75
<jetty-server.version>9.4.8.v20171121</jetty-server.version>
@@ -12,7 +10,7 @@
1210
<parent>
1311
<groupId>co.elastic.apm</groupId>
1412
<artifactId>apm-agent-parent</artifactId>
15-
<version>0.1.0-SNAPSHOT</version>
13+
<version>0.1.0</version>
1614
</parent>
1715

1816
<artifactId>apm-agent-core</artifactId>

apm-agent-java/pom.xml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<modelVersion>4.0.0</modelVersion>
64

75
<parent>
86
<groupId>co.elastic.apm</groupId>
97
<artifactId>apm-agent-parent</artifactId>
10-
<version>0.1.0-SNAPSHOT</version>
8+
<version>0.1.0</version>
119
</parent>
1210
<packaging>jar</packaging>
1311

@@ -65,8 +63,8 @@
6563
</relocation>
6664
</relocations>
6765
<transformers>
68-
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
69-
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer"/>
66+
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
67+
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" />
7068
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
7169
<addHeader>false</addHeader>
7270
</transformer>

apm-agent-plugins/apm-jdbc-plugin/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>apm-agent-plugins</artifactId>
75
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
6+
<version>0.1.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

apm-agent-plugins/apm-servlet-plugin/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>apm-agent-plugins</artifactId>
75
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
6+
<version>0.1.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

apm-agent-plugins/apm-spring-webmvc-plugin/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>apm-agent-plugins</artifactId>
75
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
6+
<version>0.1.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

apm-agent-plugins/apm-web-plugin/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>apm-agent-plugins</artifactId>
75
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
6+
<version>0.1.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119

apm-agent-plugins/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<parent>
64
<artifactId>apm-agent-parent</artifactId>
75
<groupId>co.elastic.apm</groupId>
8-
<version>0.1.0-SNAPSHOT</version>
6+
<version>0.1.0</version>
97
</parent>
108
<modelVersion>4.0.0</modelVersion>
119
<packaging>pom</packaging>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>co.elastic.apm</groupId>
76
<artifactId>apm-agent-parent</artifactId>
87
<name>${groupId}:${artifactId}</name>
9-
<version>0.1.0-SNAPSHOT</version>
8+
<version>0.1.0</version>
109
<packaging>pom</packaging>
1110
<inceptionYear>2018</inceptionYear>
1211
<organization>
@@ -28,7 +27,8 @@
2827
<connection>scm:git:[email protected]:elastic/apm-agent-java.git</connection>
2928
<developerConnection>scm:git:[email protected]:elastic/apm-agent-java.git</developerConnection>
3029
<url>https://github.com/elastic/apm-agent-java</url>
31-
</scm>
30+
<tag>v0.1.0</tag>
31+
</scm>
3232

3333
<developers>
3434
<developer>

0 commit comments

Comments
 (0)