94 lines
3.4 KiB
XML
94 lines
3.4 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>aristaproto</groupId>
|
||
|
<artifactId>compatibility-test</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>11</maven.compiler.source>
|
||
|
<maven.compiler.target>11</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<protobuf.version>3.23.4</protobuf.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.google.protobuf</groupId>
|
||
|
<artifactId>protobuf-java</artifactId>
|
||
|
<version>${protobuf.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<extensions>
|
||
|
<extension>
|
||
|
<groupId>kr.motd.maven</groupId>
|
||
|
<artifactId>os-maven-plugin</artifactId>
|
||
|
<version>1.7.1</version>
|
||
|
</extension>
|
||
|
</extensions>
|
||
|
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>3.5.0</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<transformers>
|
||
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||
|
<mainClass>aristaproto.CompatibilityTest</mainClass>
|
||
|
</transformer>
|
||
|
</transformers>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>3.3.0</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<addClasspath>true</addClasspath>
|
||
|
<mainClass>aristaproto.CompatibilityTest</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.xolstice.maven.plugins</groupId>
|
||
|
<artifactId>protobuf-maven-plugin</artifactId>
|
||
|
<version>0.6.1</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<configuration>
|
||
|
<protocArtifact>
|
||
|
com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}
|
||
|
</protocArtifact>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
</build>
|
||
|
|
||
|
</project>
|