Codebase list jblas / c023fc3d-bdea-4bed-99e6-2cd5bf8f2072/main pom.xml
c023fc3d-bdea-4bed-99e6-2cd5bf8f2072/main

Tree @c023fc3d-bdea-4bed-99e6-2cd5bf8f2072/main (Download .tar.gz)

pom.xml @c023fc3d-bdea-4bed-99e6-2cd5bf8f2072/mainraw · history · blame

<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>org.jblas</groupId>
  <artifactId>jblas</artifactId>
  <version>1.2.4-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>jblas</name>
  <description>A fast linear algebra library for Java.</description>
  <url>http://jblas.org/</url>
  <licenses>
    <license>
      <name>BSD 3-clause style license</name>
      <url>http://opensource.org/licenses/BSD-3-Clause</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:https://github.com/mikiobraun/jblas.git</connection>
    <developerConnection>scm:git:https://github.com/mikiobraun/jblas.git</developerConnection>
    <url>https://github.com/mikiobraun/jblas.git</url>
  </scm>

  <developers>
    <developer>
      <id>mikiobraun</id>
      <name>Mikio L. Braun</name>
      <email>mikiobraun@gmail.com</email>
    </developer>
  </developers>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <!-- the usual config of the maven compiler plugin -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>

      <!-- some config for the jar -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <configuration>
          <archive>
            <manifest>
              <mainClass>org.jblas.benchmark.Main</mainClass>
            </manifest>
          </archive>
        </configuration>
      </plugin>

      <!-- we need to call some ant targets to generate automatic sources -->
      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>generate-float-sources</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <tasks>
                <ant target="generate-float" />
              </tasks>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <!-- javadoc jar -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.10.3</version>
        <configuration>
          <stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile>
          <failOnError>false</failOnError>
        </configuration>
        <!--<executions>
          <execution>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>-->
      </plugin>

      <!-- sources.jar -->
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <configuration>
          <excludeResources>true</excludeResources>
          <excludes>
            <exclude>**/*.rjpp</exclude>
            <exclude>*.html</exclude>
            <exclude>*.textile</exclude>
          </excludes>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>