hs.hsadmin/qserv-deploy/pom.xml

121 lines
3.2 KiB
XML
Raw Normal View History

2023-06-22 15:03:16 +02:00
<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>de.hsadmin</groupId>
2023-08-02 20:39:29 +02:00
<artifactId>hsadmin-qserv</artifactId>
2023-09-07 13:13:15 +02:00
<version>4.0.18</version>
2023-06-22 15:03:16 +02:00
<packaging>jar</packaging>
<name>HSAdmin-QServ</name>
2023-06-22 22:17:22 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
2023-06-22 15:03:16 +02:00
<dependencies>
2023-09-05 17:42:53 +02:00
<dependency>
<groupId>de.hsadmin.core</groupId>
<artifactId>hsadmin-util</artifactId>
2023-09-07 13:13:15 +02:00
<version>4.0.18</version>
2023-09-05 17:42:53 +02:00
</dependency>
2023-06-22 15:03:16 +02:00
<dependency>
<groupId>de.hsadmin.core</groupId>
<artifactId>hsadmin-qserv</artifactId>
2023-09-07 13:13:15 +02:00
<version>4.0.18</version>
2023-06-22 15:03:16 +02:00
</dependency>
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-client</artifactId>
<version>5.18.1</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.33</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.6.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>de.hsadmin.core.qserv.QueueServer</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.vafer</groupId>
<artifactId>jdeb</artifactId>
<version>1.5</version>
<configuration>
<verbose>true</verbose>
<dataSet>
<data>
2023-08-04 17:52:49 +02:00
<src>${project.build.directory}/${project.build.finalName}-jar-with-dependencies.jar</src>
2023-06-22 15:03:16 +02:00
<dst>hsadmin-qserv-full.jar</dst>
<type>file</type>
<mapper>
<type>perm</type>
<prefix>/usr/local/lib/hostsharing/hsadmin</prefix>
</mapper>
</data>
2023-09-05 17:42:53 +02:00
<data>
<src>src/deb/init/init_hive_mysqldb.sh</src>
<type>file</type>
<mapper>
<type>perm</type>
<prefix>/usr/local/lib/hostsharing/hsadmin/tools/</prefix>
<filemode>754</filemode>
</mapper>
</data>
2023-06-22 22:12:06 +02:00
<data>
<src>src/deb/systemd/hsadmin-qserv.service</src>
<type>file</type>
<mapper>
<type>perm</type>
2023-08-04 20:34:34 +02:00
<prefix>/lib/systemd/system</prefix>
2023-06-22 22:12:06 +02:00
<filemode>644</filemode>
</mapper>
</data>
2023-06-22 15:03:16 +02:00
</dataSet>
</configuration>
<executions>
<execution>
<id>make-jdeb</id>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<finalName>hsadmin-qserv</finalName>
</build>
</project>