123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?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">
- <parent>
- <artifactId>ov-secure-data-manager-backend</artifactId>
- <groupId>com.scytl.products.ov.sdm</groupId>
- <version>2.1.6</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>sdm-db-utils</artifactId>
- <name>Secure Data Manager - Backend - Database Utilities</name>
-
- <dependencies>
- <!-- other dependencies -->
- <dependency>
- <groupId>com.scytl.products.ov.sdm.services</groupId>
- <artifactId>secure-data-manager-services</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy</artifactId>
- </exclusion>
- <exclusion>
- <artifactId>commons-collections</artifactId>
- <groupId>commons-collections</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.glassfish.hk2</groupId>
- <artifactId>hk2-utils</artifactId>
- <version>2.4.0-b10</version>
- </dependency>
- <dependency>
- <groupId>javax.mail</groupId>
- <artifactId>mail</artifactId>
- <version>1.5.0-b01</version>
- </dependency>
- <dependency>
- <groupId>com.scytl.math</groupId>
- <artifactId>scytl-math</artifactId>
- <scope>runtime</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>appassembler-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>assemble-standalone</id>
- <phase>package</phase>
- <goals>
- <goal>assemble</goal>
- </goals>
- <configuration>
- <programs>
- <program>
- <name>createDBTool</name>
- <mainClass>com.scytl.products.ov.sdm.db.utils.Application</mainClass>
- </program>
- </programs>
- <repositoryLayout>flat</repositoryLayout>
- <repositoryName>lib</repositoryName>
- <configurationDirectory>properties</configurationDirectory>
- <binFileExtensions>
- <unix>.sh</unix>
- </binFileExtensions>
- <copyConfigurationDirectory>true</copyConfigurationDirectory>
- <configurationSourceDirectory>src/main/resources</configurationSourceDirectory>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>src/main/resources/distribution.xml</descriptor>
- </descriptors>
- <appendAssemblyId>false</appendAssemblyId>
- <finalName>${project.artifactId}-${project.version}</finalName>
- </configuration>
- <executions>
- <execution>
- <id>create-archive</id>
- <!-- this is used for inheritance merges -->
- <phase>package</phase>
- <!-- bind to the packaging phase -->
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </project>
|