drmatrix
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.datarobot</groupId> <artifactId>drmatrix</artifactId> <version>1.0.10</version> </dependency>
<?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>com.datarobot</groupId> <artifactId>drmatrix</artifactId> <version>1.0.10</version> <packaging>jar</packaging> <name>DataRobot Matrix Library for Code Generation</name> <description>[DEPRECATED]A simple matrix library using netlib-java. </description> <url>https://datarobot.com</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>DataRobot</name> <email>info@datarobot.com</email> <organization>DataRobot inc.</organization> <organizationUrl>https://www.datarobot.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/datarobot</connection> <developerConnection>scm:git:ssh://github.com:datarobot</developerConnection> <url>https://github.com/datarobot</url> </scm> <dependencies> <dependency> <groupId>com.github.fommil.netlib</groupId> <artifactId>all</artifactId> <version>1.1.2</version> <type>pom</type> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.caliper</groupId> <artifactId>caliper</artifactId> <version>1.0-beta-2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.esotericsoftware</groupId> <artifactId>kryo</artifactId> <version>4.0.0</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.6.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>2.16.0</version> <configuration> <configFile>${project.basedir}/eclipse-java-google-style.xml</configFile> <encoding>UTF-8</encoding> </configuration> <executions> <execution> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>license-maven-plugin</artifactId> <groupId>com.mycila</groupId> <version>4.1</version> <configuration> <excludes> <exclude>src/test/resources/**</exclude> <exclude>src/main/resources/**</exclude> </excludes> <header>license-header.txt</header> <includes> <include>src/test/java/**</include> <include>src/main/java/**</include> </includes> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>benchmarks</id> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <id>caliper</id> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <classpathScope>test</classpathScope> <mainClass>com.google.caliper.runner.CaliperMain</mainClass> <commandlineArgs>com.datarobot.drmatrix.DenseDoubleArrayBenchmark </commandlineArgs> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>artifactory</id> <activation> <activeByDefault>true</activeByDefault> </activation> <distributionManagement> <repository> <id>central</id> <name>datarobot-artifactory-releases</name> <url>https://artifactory.int.datarobot.com/artifactory/datarobot-maven-dev</url> </repository> <snapshotRepository> <id>snapshots</id> <name>datarobot-artifactory-snapshots</name> <url>https://artifactory.int.datarobot.com/artifactory/datarobot-maven-dev</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>libs-release</name> <url>https://artifactory.int.datarobot.com/artifactory/libs-release</url> </repository> <repository> <snapshots/> <id>snapshots</id> <name>libs-snapshot</name> <url>https://artifactory.int.datarobot.com/artifactory/libs-snapshot</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <snapshots> <enabled>false</enabled> </snapshots> <id>central</id> <name>plugins-release</name> <url>https://artifactory.int.datarobot.com/artifactory/plugins-release</url> </pluginRepository> <pluginRepository> <snapshots/> <id>snapshots</id> <name>plugins-release</name> <url>https://artifactory.int.datarobot.com/artifactory/plugins-release</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>API for ${project.name} ${project.version}</doctitle> <windowtitle>API for ${project.name} ${project.version}</windowtitle> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>sonatype</id> <distributionManagement> <snapshotRepository> <id>datarobot-sonatype-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>datarobot-sonatype-releases</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <doctitle>API for ${project.name} ${project.version}</doctitle> <windowtitle>API for ${project.name} ${project.version}</windowtitle> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <configuration> <!--gpg.keyname is unique for each user and should be defined in a settings.xml --> <keyname>${gpg.keyname}</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <!--datarobot-sonatype-snapshots and datarobot-sonatype-releases have the same credentials you can specify any of those--> <serverId>datarobot-sonatype-snapshots</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <!--We must publish sources jar to bypass sonatype rules. But the sources jar can be empty, according to the rules and Apache 2.0 Licence ;)--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <excludes>**/*.scala,**/*.java</excludes> </configuration> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>