pom.xml 2.31 KB
<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>fi.codecrew.moya</groupId>
	<artifactId>moya</artifactId>
	<name>Moya Online Youth Accumulator</name>
	<packaging>pom</packaging>
	<version>1.2-SNAPSHOT</version>
	
	<modules>
	  <module>moya-parent</module>
	  <module>moya-authmodule</module>
	</modules>
	
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
		<java-version>1.8</java-version>
		<!-- plugin versions -->
		<ejb-plugin-version>2.3</ejb-plugin-version>
		<war-plugin-version>2.4</war-plugin-version>
		<ear-plugin-version>2.9</ear-plugin-version>

		<compiler-plugin-version>3.2</compiler-plugin-version>
		<!-- dependency versions -->
		<javaee-api-version>7.0</javaee-api-version>
		<!-- EJB spec version -->
		<ejb-spec-version>3.2</ejb-spec-version>
		<swagger.version>1.3.12</swagger.version>
	</properties>

	<url>http://codecrew.fi</url>
	<organization>
		<name>Codecrew RY</name>
		<url>http://codecrew.fi</url>
	</organization>
	<scm>
		<url>http://gitlab.codecrew.fi</url>
	</scm>
	<build>
		<pluginManagement>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-compiler-plugin</artifactId>
					<version>${compiler-plugin-version}</version>

					<configuration>
						<source>${java-version}</source>
						<target>${java-version}</target>
						<encoding>${project.build.sourceEncoding}</encoding>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>



	<repositories>
		<repository>
			<id>iudex</id>
			<url>http://iudex.fi/maven/</url>
		</repository>
		<repository>
			<id>jvnet-nexus-releases</id>
			<name>jvnet-nexus-releases</name>
			<url>https://maven.java.net/content/repositories/releases/</url>
		</repository>
		<repository>
			<id>prime-repo</id>
			<name>PrimeFaces Maven Repository</name>
			<url>http://repository.primefaces.org</url>
		</repository>
		<repository>
			<id>apache.snapshots</id>
			<url>http://repository.apache.org/snapshots/</url>
		</repository>
		<repository>
			<id>clojars.org</id>
			<url>http://clojars.org/repo</url>
		</repository>
	</repositories>
</project>