Blame aduna-commons-16.pom

580186b
580186b
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
580186b
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
580186b
	                         http://maven.apache.org/maven-v4_0_0.xsd">
580186b

580186b
	<modelVersion>4.0.0</modelVersion>
580186b

580186b
	<parent>
580186b
		<groupId>info.aduna</groupId>
580186b
		<artifactId>aduna-root-pom</artifactId>
580186b
		<version>13</version>
580186b
		<relativePath>../pom.xml</relativePath>
580186b
	</parent>
580186b

580186b
	<groupId>info.aduna.commons</groupId>
580186b
	<artifactId>aduna-commons</artifactId>
580186b
	<packaging>pom</packaging>
580186b
	<version>16</version>
580186b

580186b
	<name>Aduna Commons</name>
580186b
	<description>Aduna Commons parent pom</description>
580186b

580186b
	<organization>
580186b
		<name>Aduna</name>
580186b
		<url>http://www.aduna-software.com/</url>
580186b
	</organization>
580186b

580186b
	<licenses>
580186b
		<license>
580186b
			<name>Aduna BSD license</name>
580186b
			<url>http://repo.aduna-software.org/legal/aduna-bsd.txt</url>
580186b
			<distribution>repo</distribution>
580186b
			<comments>A BSD-style OSS license</comments>
580186b
		</license>
580186b
	</licenses>
580186b

580186b
	<modules>
580186b
		<module>collections/trunk</module>
580186b
		<module>concurrent/trunk</module>
580186b
		<module>graphics/trunk</module>
580186b
		<module>i18n/trunk</module>
580186b
		<module>io/trunk</module>
580186b
		<module>iteration/trunk</module>
580186b
		<module>lang/trunk</module>
580186b
		<module>language/trunk</module>
580186b
		<module>net/trunk</module>
580186b
		<module>net-http-server-embedded/trunk</module>
580186b
		<module>platform/trunk</module>
580186b
		<module>scheduling/trunk</module>
580186b
		<module>swing/trunk</module>
580186b
		<module>text/trunk</module>
580186b
		<module>webapp/trunk</module>
580186b
		<module>xml/trunk</module>
580186b
	</modules>
580186b

580186b
	<properties>
580186b
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
580186b
		<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
580186b
	</properties>
580186b

580186b
	<build>
580186b
		<plugins>
580186b
			<plugin>
580186b
				<groupId>org.apache.maven.plugins</groupId>
580186b
				<artifactId>maven-compiler-plugin</artifactId>
580186b
				<configuration>
580186b
					<source>1.5</source>
580186b
					<target>1.5</target>
580186b
				</configuration>
580186b
			</plugin>
580186b
		</plugins>
580186b
		<pluginManagement>
580186b
			<plugins>
580186b
				<plugin>   
580186b
					<groupId>org.apache.felix</groupId>
580186b
					<artifactId>maven-bundle-plugin</artifactId>
580186b
					<configuration>
580186b
						<remoteOBR>repository.xml</remoteOBR>
580186b
					</configuration>
580186b
					<executions>
580186b
						<execution>
580186b
							<id>bundle-manifest</id>
580186b
							<phase>process-classes</phase>
580186b
							<goals>    
580186b
								<goal>manifest</goal>
580186b
							</goals>   
580186b
						</execution>
580186b
						<execution>
580186b
							<id>bundle-package</id>
580186b
							<phase>package</phase>
580186b
							<goals>
580186b
								<goal>bundle</goal>
580186b
							</goals>
580186b
						</execution>
580186b
						<execution>
580186b
							<id>bundle-install</id>
580186b
							<phase>install</phase>
580186b
							<goals>
580186b
								<goal>install</goal>
580186b
							</goals>
580186b
						</execution>
580186b
						<execution>
580186b
							<id>bundle-deploy</id>
580186b
							<phase>deploy</phase>
580186b
							<goals>
580186b
								<goal>deploy</goal>
580186b
							</goals>
580186b
						</execution>
580186b
					</executions>
580186b
				</plugin>
580186b
			</plugins>
580186b
		</pluginManagement>
580186b
	</build>
580186b

580186b
	
580186b
	<reporting>
580186b
		<plugins>
580186b
			<plugin>
580186b
				<groupId>org.apache.maven.plugins</groupId>
580186b
				<artifactId>maven-javadoc-plugin</artifactId>
580186b
				<configuration>
580186b
					<source>1.5</source>
580186b
					<quiet>true</quiet>
580186b
					<encoding>utf8</encoding>
580186b
					<links>
580186b
						<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
580186b
					</links>
580186b
				</configuration>
580186b
			</plugin>
580186b
		</plugins>
580186b
	</reporting>
580186b

580186b
	<repositories>
580186b
		
580186b
		<repository>
580186b
			<releases>
580186b
				<enabled>true</enabled>
580186b
			</releases>
580186b
			<snapshots>
580186b
				<enabled>false</enabled>
580186b
			</snapshots>
580186b
			<id>aduna-opensource.releases</id>
580186b
			<name>Aduna Open Source - Maven releases</name>
580186b
			<url>http://repo.aduna-software.org/maven2/releases</url>
580186b
		</repository>
580186b
	</repositories>
580186b

580186b
	<scm>
580186b
		<connection>scm:svn:http://repo.aduna-software.org/svn/info.aduna/commons/</connection>
580186b
		<developerConnection>scm:svn:https://repo.aduna-software.org/svn/info.aduna/commons/</developerConnection>
580186b
		<url>http://repo.aduna-software.org/websvn/listing.php?repname=aduna&path=/info.aduna/commons/</url>
580186b
	</scm>
580186b

580186b
</project>