|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>org.example</groupId> |
| 5 | + <artifactId>grpc_client</artifactId> |
| 6 | + <version>1.0-SNAPSHOT</version> |
| 7 | + <name>Archetype - grpc_client</name> |
| 8 | + <url>http://maven.apache.org</url> |
| 9 | + |
| 10 | + <dependencies> |
| 11 | + <dependency> |
| 12 | + <groupId>ai.visma</groupId> |
| 13 | + <artifactId>vml-apis</artifactId> |
| 14 | + <version>1.0.10</version> |
| 15 | + </dependency> |
| 16 | + </dependencies> |
| 17 | + |
| 18 | + <distributionManagement> |
| 19 | + <snapshotRepository> |
| 20 | + <id>artifact-registry</id> |
| 21 | + <url>artifactregistry://europe-west4-maven.pkg.dev/dev-vml-cm/vml-apis-java</url> |
| 22 | + </snapshotRepository> |
| 23 | + <repository> |
| 24 | + <id>artifact-registry</id> |
| 25 | + <url>artifactregistry://europe-west4-maven.pkg.dev/dev-vml-cm/vml-apis-java</url> |
| 26 | + </repository> |
| 27 | + </distributionManagement> |
| 28 | + |
| 29 | + <repositories> |
| 30 | + <repository> |
| 31 | + <id>artifact-registry</id> |
| 32 | + <url>artifactregistry://europe-west4-maven.pkg.dev/dev-vml-cm/vml-apis-java</url> |
| 33 | + <releases> |
| 34 | + <enabled>true</enabled> |
| 35 | + </releases> |
| 36 | + <snapshots> |
| 37 | + <enabled>true</enabled> |
| 38 | + </snapshots> |
| 39 | + </repository> |
| 40 | + </repositories> |
| 41 | + |
| 42 | + <build> |
| 43 | + <extensions> |
| 44 | + <extension> |
| 45 | + <groupId>com.google.cloud.artifactregistry</groupId> |
| 46 | + <artifactId>artifactregistry-maven-wagon</artifactId> |
| 47 | + <version>2.1.0</version> |
| 48 | + </extension> |
| 49 | + </extensions> |
| 50 | + <plugins> |
| 51 | + <plugin> |
| 52 | + <groupId>org.apache.maven.plugins</groupId> |
| 53 | + <artifactId>maven-compiler-plugin</artifactId> |
| 54 | + <configuration> |
| 55 | + <source>8</source> |
| 56 | + <target>8</target> |
| 57 | + </configuration> |
| 58 | + </plugin> |
| 59 | + <plugin> |
| 60 | + <groupId>org.apache.maven.plugins</groupId> |
| 61 | + <artifactId>maven-shade-plugin</artifactId> |
| 62 | + <version>3.4.1</version> |
| 63 | + <executions> |
| 64 | + <execution> |
| 65 | + <phase>package</phase> |
| 66 | + <goals> |
| 67 | + <goal>shade</goal> |
| 68 | + </goals> |
| 69 | + <configuration> |
| 70 | + <shadedArtifactAttached>true</shadedArtifactAttached> |
| 71 | + <transformers> |
| 72 | + <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"> |
| 73 | + </transformer> |
| 74 | + <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
| 75 | + <mainClass>org.example.Client</mainClass> |
| 76 | + </transformer> |
| 77 | + </transformers> |
| 78 | + </configuration> |
| 79 | + </execution> |
| 80 | + </executions> |
| 81 | + </plugin> |
| 82 | + </plugins> |
| 83 | + </build> |
| 84 | +</project> |
| 85 | + |
0 commit comments