endea.engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.endea</groupId>
<artifactId>endea.engine</artifactId>
<version>0.1.2-2</version>
</dependency><?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>
<parent>
<groupId>org.endea</groupId>
<artifactId>endea</artifactId>
<version>0.1.2-1</version>
</parent>
<artifactId>endea.engine</artifactId>
<version>0.1.2-2</version>
<name>endea.engine</name>
<scm>
<url>https://github.com/endea/endea.core</url>
<connection>scm:git:git://github.com/endea/endea.engine.git</connection>
<developerConnection>scm:git:ssh://git@github.com/endea/endea.engine.git</developerConnection>
</scm>
<properties>
<aether.version>1.11</aether.version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-aether-provider</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>org.sonatype.aether</groupId>
<artifactId>aether-connector-asynchttpclient</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.sonatype.aether</groupId>
<artifactId>aether-impl</artifactId>
<version>${aether.version}</version>
</dependency>
<dependency>
<groupId>org.sonatype.aether</groupId>
<artifactId>aether-util</artifactId>
<version>${aether.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<!-- mvn3 clean compile assembly:single -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>endea.engine.Engine</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<!-- executions> <execution> <id>make-my-jar-with-dependencies</id> <phase>package</phase>
<goals> <goal>single</goal> </goals> </execution> </executions -->
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>2.1-alpha-1</version>
<configuration>
<copyright>20012, Endea.org</copyright>
<group>Applications/Internet</group>
<release>1</release>
<requires>
<require>apache-commons-daemon</require>
<require>apache-commons-daemon-jsvc</require>
</requires>
<mappings>
<mapping>
<directory>/etc/init.d</directory>
<filemode>755</filemode>
<username>root</username>
<groupname>root</groupname>
<sources>
<source>
<location>script/endea</location>
</source>
</sources>
</mapping>
<mapping>
<directory>/home/endea</directory>
<username>endea</username>
<groupname>endea</groupname>
<sources>
<source>
<location>script/endea.conf</location>
<location>target/endea.engine-0.1.1-alpha-1.jar</location>
</source>
</sources>
</mapping>
</mappings>
<preinstallScriptlet>
<script>echo "installing now"</script>
</preinstallScriptlet>
</configuration>
</plugin>
</plugins>
</build>
</project>