Commit 446adde0 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Fix up the pom file for my hosting.

Fix up the pom file, preparing it to be used to deploy to Maven Central.
Also fix up some whitespace issues, and lock the versions of all used plugins,
since maven couldn't apparently figure out which versions to use.
parent bc1a1980
Loading
Loading
Loading
Loading
+105 −43
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">
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
         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>net.sourceforge.jmatio</groupId>
    <prerequisites>
        <maven>2.2.1</maven>
    </prerequisites>
    <groupId>ca.mjdsystems.jmatio</groupId>
    <artifactId>jmatio</artifactId>
	<version>1.2</version>
    <version>1.2-SNAPSHOT</version>
    <description>
        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>
    <url>https://github.com/MJDSys/JMatIO</url>
    <licenses>
        <license>
            <name>BSD</name>
@@ -18,9 +22,9 @@
        </license>
    </licenses>
    <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>
        <url>https://github.com/MJDSys/JMatIO</url>
        <connection>scm:git:https://github.com/MJDSys/jmatio.git</connection>
        <developerConnection>scm:git:https://github.com/MJDSys/jmatio.git</developerConnection>
        <tag>HEAD</tag>
    </scm>
    <developers>
@@ -47,12 +51,20 @@
            </roles>
            <timezone>0</timezone>
        </developer>
        <developer>
            <id>mjdsys</id>
            <name>Matthew Dawson</name>
            <email>matthew@mjdsystems.ca</email>
            <roles>
                <role>developer</role>
            </roles>
        </developer>
    </developers>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
			<version>4.8.2</version>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
@@ -61,6 +73,51 @@
    </properties>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <showDeprecation>true</showDeprecation>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-deploy-plugin</artifactId>
                <version>2.8.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-install-plugin</artifactId>
                <version>2.5.1</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.4</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.6</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <version>3.3</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.17</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <version>2.5</version>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
@@ -78,7 +135,7 @@
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <version>2.9.1</version>
                <executions>
                    <execution>
                        <phase>verify</phase>
@@ -109,4 +166,9 @@
            </plugin>
        </plugins>
    </build>
    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
    </parent>
</project>