Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lpapailiou committed Sep 16, 2020
0 parents commit a43a70b
Show file tree
Hide file tree
Showing 21 changed files with 164 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/workspace.xml
*.iml
/.idea/
/out/
/target/
/.settings/
/bin/
/src/
/classes/
*.classpath
*.project
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# neural network library


### From a Jar file
You can download the Jar file directly from the [latest release](https://github.com/lpapailiou/neuralnetwork/releases/latest). Alternatively, you can build it yourself.
37 changes: 37 additions & 0 deletions neuralnetwork/maven-repo/1.0-SNAPSHOT/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata modelVersion="1.1.0">
<groupId>neuralnetwork</groupId>
<artifactId>maven-repo</artifactId>
<version>1.0-SNAPSHOT</version>
<versioning>
<snapshot>
<timestamp>20200916.204522</timestamp>
<buildNumber>1</buildNumber>
</snapshot>
<lastUpdated>20200916204522</lastUpdated>
<snapshotVersions>
<snapshotVersion>
<extension>jar</extension>
<value>1.0-20200916.204522-1</value>
<updated>20200916204522</updated>
</snapshotVersion>
<snapshotVersion>
<extension>pom</extension>
<value>1.0-20200916.204522-1</value>
<updated>20200916204522</updated>
</snapshotVersion>
<snapshotVersion>
<classifier>sources</classifier>
<extension>jar</extension>
<value>1.0-20200916.204522-1</value>
<updated>20200916204522</updated>
</snapshotVersion>
<snapshotVersion>
<classifier>javadoc</classifier>
<extension>jar</extension>
<value>1.0-20200916.204522-1</value>
<updated>20200916204522</updated>
</snapshotVersion>
</snapshotVersions>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
81f7f5810f501a06f8748b91f7c152a9
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fc44458b5589f7f161302cbcf1b96cea41a871c0
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
996395c1e1757f0c226040cca823a054
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
59730d43d0dbee2fd90bc876816a0118e40a69e3
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
77e69ba8d0ab6b619e52065767d28964
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4958dd46cb16714fa8a8bbeef204d16c85b3eeae
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5b7862da61921b8b1aac11f7849c932c
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0ec3563c03b241d0f81557902572cfffb003c4bf
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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>neuralnetwork</groupId>
<artifactId>maven-repo</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.repo>file:///C:/Users/Lena Papailiou/git/neuralnetwork/</github.repo>
</properties>

<distributionManagement>
<repository>
<id>maven-repo</id>
<url>${github.repo}</url>
</repository>
</distributionManagement>


</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2ebc19411da3628a9be22b52f039a0f9
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b5fd9edfa7b5c416c1a16d6b31cb6992ea05cf14
11 changes: 11 additions & 0 deletions neuralnetwork/maven-repo/maven-metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<metadata>
<groupId>neuralnetwork</groupId>
<artifactId>maven-repo</artifactId>
<versioning>
<versions>
<version>1.0-SNAPSHOT</version>
</versions>
<lastUpdated>20200916204522</lastUpdated>
</versioning>
</metadata>
1 change: 1 addition & 0 deletions neuralnetwork/maven-repo/maven-metadata.xml.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9ea4ac10a0d2319eea68cdacd5187d77
1 change: 1 addition & 0 deletions neuralnetwork/maven-repo/maven-metadata.xml.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f9a9c1060718baa298c6b705b38955d225bf554f
44 changes: 44 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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>neuralnetwork</groupId>
<artifactId>maven-repo</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
</dependencies>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.repo>file:///C:/Users/Lena Papailiou/git/neuralnetwork/</github.repo>
</properties>

<distributionManagement>
<repository>
<id>maven-repo</id>
<url>${github.repo}</url>
</repository>
</distributionManagement>


</project>

0 comments on commit a43a70b

Please sign in to comment.