-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
101 lines (101 loc) · 4.06 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.pervasive.di.client.sdk</groupId>
<artifactId>di-client-sdk-samples</artifactId>
<packaging>jar</packaging>
<version>12.1.0-9</version>
<name>DataConnect Client SDK Samples</name>
<url>http://www.pervasive.com</url>
<repositories>
<repository>
<releases>
<checksumPolicy>ignore</checksumPolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<checksumPolicy>ignore</checksumPolicy>
</snapshots>
<id>dc_maven_repo</id>
<name>DataConnect Client SDK Maven Repository</name>
<url>https://raw.github.com/ActianCorp/dc.maven/repository</url>
</repository>
</repositories>
<properties>
<sample.to.run></sample.to.run>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.pervasive.di.client.sdk</groupId>
<artifactId>di-client-sdk</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.pervasive.di</groupId>
<artifactId>di-artifacts</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.pervasive.cosmos</groupId>
<artifactId>jcore</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.pervasive.engine.jdk</groupId>
<artifactId>djec</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>stage-artifacts-and-data</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>runtime</finalName>
<descriptors>
<descriptor>src/main/assemblies/stage-artifacts-and-data.xml</descriptor>
</descriptors>
<attach>false</attach>
<tarLongFileMode>gnu</tarLongFileMode>
<appendAssemblyId>false</appendAssemblyId>
<outputDirectory>target</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath/>
<argument>com.actian.dc.clientsdk.samples.SamplesRunner</argument>
<argument>${sample.to.run}</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>