Skip to content

Commit

Permalink
[maven-release-plugin] prepare release 2.0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmoten committed Feb 22, 2022
1 parent 3b6366e commit 792236f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 24 deletions.
6 changes: 2 additions & 4 deletions example/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<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/maven-v4_0_0.xsd">
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.davidmoten</groupId>
<artifactId>flatbuffers-parent</artifactId>
<version>1.12.0.2-SNAPSHOT</version>
<version>2.0.3.1</version>
</parent>
<artifactId>example</artifactId>
<description>Example project demonstrating generating sources using flatc and running a test with the generated classes using the flatbuffers-java runtime library</description>
Expand Down
26 changes: 8 additions & 18 deletions flatbuffers-compiler/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<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/maven-v4_0_0.xsd">
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.davidmoten</groupId>
<artifactId>flatbuffers-parent</artifactId>
<version>1.12.0.2-SNAPSHOT</version>
<version>2.0.3.1</version>
</parent>
<artifactId>flatbuffers-compiler</artifactId>
<packaging>pom</packaging>
Expand All @@ -21,20 +19,12 @@
<phase>generate-resources</phase>
<configuration>
<target>
<echo
message="unzipping linux binary for inclusion by assembly" />
<unzip src="bin/linux/flatc.zip"
dest="${project.build.directory}/linux/" />
<unzip src="bin/osx/flatc.zip"
dest="${project.build.directory}/osx/" />
<unzip src="bin/windows/flatc.zip"
dest="${project.build.directory}/windows/" />
<chmod
file="${project.build.directory}/linux/flatc"
perm="+x" />
<chmod
file="${project.build.directory}/osx/flatc"
perm="+x" />
<echo message="unzipping linux binary for inclusion by assembly" />
<unzip src="bin/linux/flatc.zip" dest="${project.build.directory}/linux/" />
<unzip src="bin/osx/flatc.zip" dest="${project.build.directory}/osx/" />
<unzip src="bin/windows/flatc.zip" dest="${project.build.directory}/windows/" />
<chmod file="${project.build.directory}/linux/flatc" perm="+x" />
<chmod file="${project.build.directory}/osx/flatc" perm="+x" />
</target>
</configuration>
<goals>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</parent>
<artifactId>flatbuffers-parent</artifactId>
<packaging>pom</packaging>
<version>1.12.0.2-SNAPSHOT</version>
<version>2.0.3.1</version>
<description>artifacts for use with flatbuffers including repackaged builds of google flatbuffers source code</description>
<properties>
<flatbuffers.version>1.3.0</flatbuffers.version>
Expand Down Expand Up @@ -51,7 +51,7 @@
<connection>${scm.url}</connection>
<developerConnection>${scm.url}</developerConnection>
<url>${scm.url}</url>
<tag>HEAD</tag>
<tag>2.0.3.1</tag>
</scm>

<modules>
Expand Down

0 comments on commit 792236f

Please sign in to comment.