Created
November 6, 2014 12:06
-
-
Save CptMauli/760a178777da2a84e671 to your computer and use it in GitHub Desktop.
pom file for example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>maven.test</groupId> | |
<artifactId>sample</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>my test</name> | |
<url>http://maven.apache.org</url> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<java.version>1.8</java.version> | |
</properties> | |
<repositories> | |
<repository> | |
<id>eclipse.scada</id> | |
<url>http://download.eclipse.org/eclipsescada/downloads/org.eclipse.scada/drops/0.1.0/R201407010859/maven</url> | |
<releases> | |
<enabled>true</enabled> | |
</releases> | |
<snapshots> | |
<enabled>true</enabled> | |
</snapshots> | |
</repository> | |
</repositories> | |
<dependencies> | |
<dependency> | |
<groupId>org.eclipse.scada.utils</groupId> | |
<artifactId>org.eclipse.scada.utils.stats</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.core</groupId> | |
<artifactId>org.eclipse.scada.da.client.ngp</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.core</groupId> | |
<artifactId>org.eclipse.scada.da.common.ngp</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.core</groupId> | |
<artifactId>org.eclipse.scada.core.ngp</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.core</groupId> | |
<artifactId>org.eclipse.scada.core.client.ngp</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.core</groupId> | |
<artifactId>org.eclipse.scada.core.client.common</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.core</groupId> | |
<artifactId>org.eclipse.scada.da.client</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.protocols</groupId> | |
<artifactId>org.eclipse.scada.protocol.common</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.eclipse.scada.protocols</groupId> | |
<artifactId>org.eclipse.scada.protocol.ngp.common</artifactId> | |
<version>[0.1.0,)</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.mina</groupId> | |
<artifactId>mina-core</artifactId> | |
<version>2.0.7</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.mina</groupId> | |
<artifactId>mina-filter-compression</artifactId> | |
<version>2.0.7</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.1.1</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<outputDirectory>bin</outputDirectory> | |
<sourceDirectory>src</sourceDirectory> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-bundle-plugin</artifactId> | |
<extensions>true</extensions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.1</version> | |
<configuration> | |
<source>1.8</source> | |
<target>1.8</target> | |
<testSource>1.8</testSource> | |
<testTarget>1.8</testTarget> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment