Skip to content

Commit d8738b6

Browse files
committed
[#25] prepare release 1.1.0
1 parent 91e33f0 commit d8738b6

6 files changed

Lines changed: 15 additions & 26 deletions

File tree

de.slothsoft.mp4spliterator.assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>de.slothsoft.mp4spliterator</groupId>
88
<artifactId>de.slothsoft.mp4spliterator.build</artifactId>
9-
<version>1.1.0-SNAPSHOT</version>
9+
<version>1.1.0</version>
1010
</parent>
1111

1212
<!-- This project assembles the result of the product into a ZIP -->

de.slothsoft.mp4spliterator.feature/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>de.slothsoft.mp4spliterator</groupId>
88
<artifactId>de.slothsoft.mp4spliterator.build</artifactId>
9-
<version>1.1.0-SNAPSHOT</version>
9+
<version>1.1.0</version>
1010
</parent>
1111

1212
</project>

de.slothsoft.mp4spliterator.it/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
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
<artifactId>de.slothsoft.mp4spliterator.it</artifactId>
75
<packaging>eclipse-test-plugin</packaging>
86

97
<parent>
108
<groupId>de.slothsoft.mp4spliterator</groupId>
119
<artifactId>de.slothsoft.mp4spliterator.build</artifactId>
12-
<version>1.1.0-SNAPSHOT</version>
10+
<version>1.1.0</version>
1311
</parent>
1412

1513
<build>

de.slothsoft.mp4spliterator.product/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>de.slothsoft.mp4spliterator</groupId>
88
<artifactId>de.slothsoft.mp4spliterator.build</artifactId>
9-
<version>1.1.0-SNAPSHOT</version>
9+
<version>1.1.0</version>
1010
</parent>
1111

1212
<build>

de.slothsoft.mp4spliterator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>de.slothsoft.mp4spliterator</groupId>
99
<artifactId>de.slothsoft.mp4spliterator.build</artifactId>
10-
<version>1.1.0-SNAPSHOT</version>
10+
<version>1.1.0</version>
1111
</parent>
1212

1313
</project>

pom.xml

Lines changed: 9 additions & 18 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
<modelVersion>4.0.0</modelVersion>
64
<groupId>de.slothsoft.mp4spliterator</groupId>
75
<artifactId>de.slothsoft.mp4spliterator.build</artifactId>
8-
<version>1.1.0-SNAPSHOT</version>
6+
<version>1.1.0</version>
97
<packaging>pom</packaging>
108

119
<modules>
@@ -203,13 +201,9 @@
203201
<configuration>
204202
<target>
205203
<property name="source-location" location="../" />
206-
<taskdef name="jacoco-report"
207-
classname="org.jacoco.ant.ReportTask"
208-
classpathref="maven.plugin.classpath" />
209-
<taskdef classpathref="maven.runtime.classpath"
210-
resource="net/sf/antcontrib/antcontrib.properties" />
211-
<available file="${project.basedir}/target/jacoco.exec"
212-
property="jacoco.exec.file.exists" />
204+
<taskdef name="jacoco-report" classname="org.jacoco.ant.ReportTask" classpathref="maven.plugin.classpath" />
205+
<taskdef classpathref="maven.runtime.classpath" resource="net/sf/antcontrib/antcontrib.properties" />
206+
<available file="${project.basedir}/target/jacoco.exec" property="jacoco.exec.file.exists" />
213207
<echo message="${project.basedir}/target/jacoco.exec" />
214208
<if>
215209
<equals arg1="${jacoco.exec.file.exists}" arg2="true" />
@@ -225,17 +219,14 @@
225219

226220
<structure name="mp4spliterator">
227221
<classfiles>
228-
<fileset
229-
dir="${source-location}/de.slothsoft.mp4spliterator/target/classes" />
222+
<fileset dir="${source-location}/de.slothsoft.mp4spliterator/target/classes" />
230223
</classfiles>
231224
<sourcefiles encoding="UTF-8">
232-
<fileset
233-
dir="${source-location}/de.slothsoft.mp4spliterator/src/" />
225+
<fileset dir="${source-location}/de.slothsoft.mp4spliterator/src/" />
234226
</sourcefiles>
235227
</structure>
236228
<html destdir="${project.basedir}/target/jacoco/report" />
237-
<xml
238-
destfile="${project.basedir}/target/jacoco/report/jacoco.xml" />
229+
<xml destfile="${project.basedir}/target/jacoco/report/jacoco.xml" />
239230
</jacoco-report>
240231
</try>
241232
<catch>
@@ -254,6 +245,6 @@
254245
</build>
255246
<scm>
256247
<developerConnection>scm:git:https://github.com/slothsoft/mp4-spliterator.git</developerConnection>
257-
<tag>HEAD</tag>
248+
<tag>1.1.0</tag>
258249
</scm>
259250
</project>

0 commit comments

Comments
 (0)