Commit 6581709d authored by Sina Samangooei's avatar Sina Samangooei
Browse files

fixed the pom.xml

parent e4b46a65
Loading
Loading
Loading
Loading
+78 −54
Original line number Diff line number Diff line
<?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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>jmatio</groupId>
	<groupId>net.sourceforge.jmatio</groupId>
	<artifactId>jmatio</artifactId>
	<version>0.2.3.1</version>
	<name>The OpenIMAJ branch of JMATIO</name>
	<version>1.2-SNAPSHOT</version>
	<url>http://www.openimaj.org/thirdparty/jmatio</url>
	<inceptionYear>2011</inceptionYear>
	<description>
		Originally developed by Wojciech Gradkowski
		over here: http://sourceforge.net/projects/jmatio/
		 Matlab's MAT-file I/O API in JAVA. Supports Matlab 5 MAT-flie format reading and writing. Written in pure JAVA.
  	</description>
  	<name>jmatio</name>
  	<url>http://sourceforge.net/projects/jmatio/</url>
	<licenses>
        <license>
			<name>New BSD</name>
			<url>http://www.openimaj.org/LICENSE.txt</url>
			<distribution>repo,manual</distribution>
			<comments>The New BSD License</comments>
            <name>BSD</name>
            <comments>Free for open or commercial use, with credit line</comments>
            <url>http://www.linfo.org/bsdlicense.html</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
	<organization>
		<name>The University of Southampton</name>
		<url>http://www.soton.ac.uk</url>
	</organization>
	<scm>
        <url>https://github.com/codemercenary/jmatio.git</url>
        <connection>scm:git:https://github.com/codemercenary/jmatio.git</connection>
        <developerConnection>scm:git:https://github.com/codemercenary/jmatio.git</developerConnection>
        <tag>HEAD</tag>
    </scm>
	<developers>
		<developer>
			<id>wgradkowski</id>
			<name>Wojciech Gradkowski</name>
			<url>http://www.sourceforge.net/projects/jmatio</url>
            <id>cbwatcham</id>
            <name>Craig Watcham</name>
            <url>http://sourceforge.net/users/cbwatcham/</url>
            <organization>Sourceforge</organization>
            <organizationUrl>http://sourceforge.net/</organizationUrl>
            <roles>
                <role>architect</role>
                <role>developer</role>
            </roles>
        </developer>
		<developer>
@@ -40,16 +44,11 @@
			<organization>The University of Southampton</organization>
			<organizationUrl>http://www.soton.ac.uk</organizationUrl>
			<roles>
				<role>architect</role>
				<role>developer</role>
			</roles>
			<timezone>0</timezone>
		</developer>
	</developers>
	<issueManagement>
		<system>Sourceforge/Allura</system>
		<url>https://sourceforge.net/p/openimaj/tickets/</url>
	</issueManagement>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
@@ -65,25 +64,50 @@
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.6</version>
				<configuration>
					<argLine>-Xmx1G -Djava.awt.headless=true</argLine>
				</configuration>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>jar-no-fork</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
	     	<artifactId>maven-compiler-plugin</artifactId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <executions>
                    <execution>
                        <phase>verify</phase>
                        <goals>
                            <goal>javadoc</goal>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.4</version>
                <configuration>
				<proc>none</proc>
                    <finalName>rs.jar</finalName>
                    <descriptors>
                        <descriptor>src/main/assembly/bundle.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <phase>verify</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
	<repositories>
		<repository>
			<id>Octopussy maven repository</id>
			<url>http://octopussy.ecs.soton.ac.uk/m2/thirdparty/</url>
		</repository>
	</repositories>
</project>