Skip to content

Commit

Permalink
repo
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuenz committed Feb 7, 2018
1 parent 23c0d71 commit 64dbc82
Show file tree
Hide file tree
Showing 10 changed files with 169 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,58 @@
<?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>akosba.jsnark</groupId>
<artifactId>JsnarkCircuitBuilder</artifactId>
<version>1.0-SNAPSHOT</version>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<!-- This tells Maven to include all dependencies -->
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>


</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue Jan 09 01:45:21 CET 2018
JsnarkCircuitBuilder-1.0-SNAPSHOT.jar>=
JsnarkCircuitBuilder-1.0-SNAPSHOT-jar-with-dependencies.jar>=
JsnarkCircuitBuilder-1.0-SNAPSHOT.pom>=
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>akosba.jsnark</groupId>
<artifactId>JsnarkCircuitBuilder</artifactId>
<version>1.0-SNAPSHOT</version>
<versioning>
<snapshot>
<localCopy>true</localCopy>
</snapshot>
<lastUpdated>20180109004521</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<classifier>jar-with-dependencies</classifier>
<extension>jar</extension>
<value>1.0-SNAPSHOT</value>
<updated>20180109004521</updated>
</snapshotVersion>
<snapshotVersion>
<extension>jar</extension>
<value>1.0-SNAPSHOT</value>
<updated>20180109004521</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>1.0-SNAPSHOT</value>
<updated>20180109004521</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,58 @@
<?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>akosba.jsnark</groupId>
<artifactId>JsnarkCircuitBuilder</artifactId>
<version>1.1</version>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<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>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<!-- This tells Maven to include all dependencies -->
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</plugin>


</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>
@@ -0,0 +1,5 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue Jan 09 02:07:20 CET 2018
JsnarkCircuitBuilder-1.1.jar>=
JsnarkCircuitBuilder-1.1.pom>=
JsnarkCircuitBuilder-1.1-jar-with-dependencies.jar>=
13 changes: 13 additions & 0 deletions repo/akosba/jsnark/JsnarkCircuitBuilder/maven-metadata-local.xml
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>akosba.jsnark</groupId>
<artifactId>JsnarkCircuitBuilder</artifactId>
<versioning>
<release>1.1</release>
<versions>
<version>1.0-SNAPSHOT</version>
<version>1.1</version>
</versions>
<lastUpdated>20180109010720</lastUpdated>
</versioning>
</metadata>

0 comments on commit 64dbc82

Please sign in to comment.