123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?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>
- <parent>
- <groupId>com.scytl.products.ov.channel.ag</groupId>
- <artifactId>api-gateway</artifactId>
- <version>2.1.7</version>
- </parent>
- <artifactId>ov-api-gateway-assembly</artifactId>
- <packaging>pom</packaging>
- <name>Online Voting - API Gateway - Assembly</name>
- <description>OV Voting API Gateway Assembly</description>
- <dependencies>
- <dependency>
- <groupId>com.scytl.products.ov.channel.ag.ui</groupId>
- <artifactId>ag-ws-rest</artifactId>
- <type>war</type>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy</id>
- <phase>prepare-package</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>com.scytl.math</groupId>
- <artifactId>scytl-math</artifactId>
- <version>${scytl-math.version}</version>
- </artifactItem>
- </artifactItems>
- <outputDirectory>${project.build.directory}/lib</outputDirectory>
- </configuration>
- </execution>
- <execution>
- <id>unpack</id>
- <phase>prepare-package</phase>
- <goals>
- <goal>unpack</goal>
- </goals>
- <configuration>
- <artifactItems>
- <artifactItem>
- <groupId>com.scytl.math</groupId>
- <artifactId>scytl-math-native</artifactId>
- <version>${scytl-math.version}</version>
- <classifier>amd64-Linux-gpp-jni</classifier>
- <type>nar</type>
- </artifactItem>
- <artifactItem>
- <groupId>com.scytl.math</groupId>
- <artifactId>scytl-math-native</artifactId>
- <version>${scytl-math.version}</version>
- <classifier>amd64-Windows-gpp-jni</classifier>
- <type>nar</type>
- </artifactItem>
- <artifactItem>
- <groupId>com.scytl.gmp</groupId>
- <artifactId>scytl-gmp</artifactId>
- <version>${scytl-gmp.version}</version>
- <classifier>amd64-Linux-gpp-shared</classifier>
- <type>nar</type>
- </artifactItem>
- <artifactItem>
- <groupId>com.scytl.gmp</groupId>
- <artifactId>scytl-gmp</artifactId>
- <version>${scytl-gmp.version}</version>
- <classifier>amd64-Windows-gpp-shared</classifier>
- <type>nar</type>
- </artifactItem>
- </artifactItems>
- <outputDirectory>${project.build.directory}</outputDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>package.xml</descriptor>
- </descriptors>
- <appendAssemblyId>false</appendAssemblyId>
- <finalName>ov-api-gateway-assembly-${project.version}</finalName>
- </configuration>
- <executions>
- <execution>
- <id>create-archive</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
-
|