You can download javacpp-0.7.jar in this page.
GPLv2 with Classpath exception
javacpp-0.7.jar file has the following types.
META-INF.maven.com.googlecode.javacpp.javacpp.pom.properties META-INF.maven.com.googlecode.javacpp.javacpp.pom.xml META-INF/MANIFEST.MF META-INF/maven/plugin.xml com.googlecode.javacpp.BoolPointer.class com.googlecode.javacpp.BuildMojo.class com.googlecode.javacpp.Builder.class com.googlecode.javacpp.BytePointer.class com.googlecode.javacpp.CLongPointer.class com.googlecode.javacpp.CharPointer.class com.googlecode.javacpp.DoublePointer.class com.googlecode.javacpp.FloatPointer.class com.googlecode.javacpp.FunctionPointer.class com.googlecode.javacpp.Generator.class com.googlecode.javacpp.IntPointer.class com.googlecode.javacpp.Loader.class com.googlecode.javacpp.LongPointer.class com.googlecode.javacpp.Parser.class com.googlecode.javacpp.Pointer.class com.googlecode.javacpp.PointerPointer.class com.googlecode.javacpp.ShortPointer.class com.googlecode.javacpp.SizeTPointer.class com.googlecode.javacpp.annotation.Adapter.class com.googlecode.javacpp.annotation.Allocator.class com.googlecode.javacpp.annotation.ArrayAllocator.class com.googlecode.javacpp.annotation.ByPtr.class com.googlecode.javacpp.annotation.ByPtrPtr.class com.googlecode.javacpp.annotation.ByPtrRef.class com.googlecode.javacpp.annotation.ByRef.class com.googlecode.javacpp.annotation.ByVal.class com.googlecode.javacpp.annotation.Cast.class com.googlecode.javacpp.annotation.Const.class com.googlecode.javacpp.annotation.Convention.class com.googlecode.javacpp.annotation.Function.class com.googlecode.javacpp.annotation.Index.class com.googlecode.javacpp.annotation.MemberGetter.class com.googlecode.javacpp.annotation.MemberSetter.class com.googlecode.javacpp.annotation.Name.class com.googlecode.javacpp.annotation.Namespace.class com.googlecode.javacpp.annotation.NoDeallocator.class com.googlecode.javacpp.annotation.NoException.class com.googlecode.javacpp.annotation.NoOffset.class com.googlecode.javacpp.annotation.Opaque.class com.googlecode.javacpp.annotation.Platform.class com.googlecode.javacpp.annotation.Properties.class com.googlecode.javacpp.annotation.Raw.class com.googlecode.javacpp.annotation.StdString.class com.googlecode.javacpp.annotation.StdVector.class com.googlecode.javacpp.annotation.ValueGetter.class com.googlecode.javacpp.annotation.ValueSetter.class com/googlecode/javacpp/properties/android-arm.properties com/googlecode/javacpp/properties/android-x86.properties com/googlecode/javacpp/properties/generic.properties com/googlecode/javacpp/properties/ios-arm.properties com/googlecode/javacpp/properties/ios-x86.properties com/googlecode/javacpp/properties/linux-arm.properties com/googlecode/javacpp/properties/linux-x86-cuda.properties com/googlecode/javacpp/properties/linux-x86.properties com/googlecode/javacpp/properties/linux-x86_64-cuda.properties com/googlecode/javacpp/properties/linux-x86_64.properties com/googlecode/javacpp/properties/macosx-x86-cuda.properties com/googlecode/javacpp/properties/macosx-x86.properties com/googlecode/javacpp/properties/macosx-x86_64-cuda.properties com/googlecode/javacpp/properties/macosx-x86_64.properties com/googlecode/javacpp/properties/windows-x86-cuda.properties com/googlecode/javacpp/properties/windows-x86-mingw.properties com/googlecode/javacpp/properties/windows-x86.properties com/googlecode/javacpp/properties/windows-x86_64-cuda.properties com/googlecode/javacpp/properties/windows-x86_64-mingw.properties com/googlecode/javacpp/properties/windows-x86_64.properties
javacpp-0.7.pom file content.
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.googlecode.javacpp</groupId> <artifactId>javacpp</artifactId> <version>0.7</version> <packaging>maven-plugin</packaging> <name>JavaCPP</name> <description>The missing bridge between Java and native C++</description> <url>http://code.google.com/p/javacpp/</url> <licenses> <license> <name>GPLv2 with Classpath exception</name> <url>http://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Samuel Audet</name> <email>samuel.audet@gmail.com</email> </developer> </developers> <scm> <url>https://javacpp.googlecode.com/git/</url> <connection>scm:git:https://javacpp.googlecode.com/git/</connection> </scm> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.timestamp.format>yyyyMMddhhmm</maven.build.timestamp.format> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>2.0</version> <optional>true</optional> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <mainClass>com.googlecode.javacpp.Builder</mainClass> </manifest> <manifestEntries> <Class-Path>./</Class-Path> <Name>com/googlecode/javacpp/</Name> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Vendor>Samuel Audet</Implementation-Vendor> <Implementation-Version>${project.version}</Implementation-Version> <Specification-Title>${project.name}</Specification-Title> <Specification-Vendor>Samuel Audet</Specification-Vendor> <Specification-Version>${project.version}</Specification-Version> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>2.3</version> <configuration> <createChecksum>true</createChecksum> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <descriptors> <descriptor>src/main/assembly/bin.xml</descriptor> <descriptor>src/main/assembly/src.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>attach-source</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <detectLinks>true</detectLinks> <show>private</show> <tagletArtifacts> <tagletArtifact> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-tools-javadoc</artifactId> <version>2.9</version> </tagletArtifact> </tagletArtifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>com.googlecode.javacpp</groupId> <artifactId>javacpp</artifactId> <version>0.7</version> </dependency>
If you think the following javacpp-0.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.