-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
101 lines (93 loc) · 4.03 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>
<artifactId>bco.device.handle</artifactId>
<name>BCO Handle Device Manager</name>
<description>BCO device manager which connects the csra kitchen handles tho the bco infrastructure. Its required since the handels do not offer authentication support which bco 2.0 relays on..</description>
<packaging>jar</packaging>
<parent>
<groupId>org.openbase</groupId>
<artifactId>bco.device</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<licenses>
<license>
<name>GPLv3</name>
<url>http://www.gnu.org/licenses/gpl.html</url>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>2.0.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<programs>
<program>
<mainClass>org.openbase.bco.device.handle.HandleDeviceManagerLauncher</mainClass>
<id>bco-manager-device-handle</id>
<platforms>
<platform>unix</platform>
</platforms>
</program>
</programs>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>${dependency.org.codehaus.mojo.license-maven-plugin.version}</version>
<configuration>
<licenseName>gpl_v3</licenseName>
</configuration>
<executions>
<execution>
<id>first</id>
<goals>
<goal>update-file-header</goal>
</goals>
<phase>process-sources</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<skipTests>false</skipTests>
<!-- only compile tests if needed -->
<maven.test.skip>${skipTests}</maven.test.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<dependency.bco.version>2.0-SNAPSHOT</dependency.bco.version>
<dependency.jul.version>${dependency.bco.version}</dependency.jul.version>
<dependency.bco.registry.version>${dependency.bco.version}</dependency.bco.registry.version>
<dependency.org.codehaus.mojo.license-maven-plugin.version>1.10</dependency.org.codehaus.mojo.license-maven-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openbase</groupId>
<artifactId>bco.dal.control</artifactId>
<version>${dependency.bco.registry.version}</version>
</dependency>
</dependencies>
</project>