Skip to content

Commit 82dc88c

Browse files
committed
Staging repo setup
1 parent 79aba18 commit 82dc88c

File tree

8 files changed

+50
-6
lines changed

8 files changed

+50
-6
lines changed

data-pipeline-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<description>Loading raw data and processing it before training</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
3434
<nd4j.backend>nd4j-native</nd4j.backend>

dl4j-distributed-training-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<description>A set of examples introducing distributed training with the DL4J framework</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
3434
<nd4j.backend>nd4j-native</nd4j.backend>

dl4j-examples/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<description>A set of examples introducing the DL4J framework</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
3434
<nd4j.backend>nd4j-native</nd4j.backend>
@@ -48,6 +48,15 @@
4848

4949

5050
<repositories>
51+
<repository>
52+
<id>orgdeeplearning4j-1137</id>
53+
<url>https://oss.sonatype.org/content/repositories/orgdeeplearning4j-1137</url>
54+
<releases>
55+
<enabled>true</enabled>
56+
</releases>
57+
</repository>
58+
59+
5160
<repository>
5261
<id>sonatype-nexus-snapshots</id>
5362
<name>Sonatype Nexus Snapshots</name>

mvn-project-template/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<!-- Properties Section. Change ND4J versions here, if required -->
3030
<properties>
31-
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
3232
<logback.version>1.2.3</logback.version>
3333
<java.version>1.8</java.version>
3434
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>

nd4j-ndarray-examples/pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@
2828
<description>Working with NDArrays</description>
2929

3030
<repositories>
31+
<repository>
32+
<id>orgdeeplearning4j-1137</id>
33+
<url>https://oss.sonatype.org/content/repositories/orgdeeplearning4j-1137</url>
34+
<releases>
35+
<enabled>true</enabled>
36+
</releases>
37+
</repository>
38+
3139
<repository>
3240
<id>sonatype-nexus-snapshots</id>
3341
<name>Sonatype Nexus Snapshots</name>
@@ -44,7 +52,7 @@
4452

4553

4654
<properties>
47-
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
55+
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
4856
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
4957
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
5058
<nd4j.backend>nd4j-native</nd4j.backend>

rl4j-examples/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@
2020

2121

2222
<repositories>
23+
24+
<repository>
25+
<id>orgdeeplearning4j-1137</id>
26+
<url>https://oss.sonatype.org/content/repositories/orgdeeplearning4j-1137</url>
27+
<releases>
28+
<enabled>true</enabled>
29+
</releases>
30+
</repository>
31+
2332
<repository>
2433
<id>sonatype-nexus-snapshots</id>
2534
<name>Sonatype Nexus Snapshots</name>

samediff-examples/pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@
4646
</properties>
4747

4848
<repositories>
49+
<repository>
50+
<id>orgdeeplearning4j-1137</id>
51+
<url>https://oss.sonatype.org/content/repositories/orgdeeplearning4j-1137</url>
52+
<releases>
53+
<enabled>true</enabled>
54+
</releases>
55+
</repository>
56+
57+
4958
<repository>
5059
<id>sonatype-nexus-snapshots</id>
5160
<name>Sonatype Nexus Snapshots</name>

tensorflow-keras-import-examples/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<description>Loading models trained in keras or tensorflow</description>
2929

3030
<properties>
31-
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
31+
<dl4j-master.version>1.0.0-M1</dl4j-master.version>
3232
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->
3333
<nd4j.backend>nd4j-native</nd4j.backend>
3434
<!-- <nd4j.backend>nd4j-cuda-10.2-platform</nd4j.backend> -->
@@ -45,6 +45,15 @@
4545
</properties>
4646

4747
<repositories>
48+
<repository>
49+
<id>orgdeeplearning4j-1137</id>
50+
<url>https://oss.sonatype.org/content/repositories/orgdeeplearning4j-1137</url>
51+
<releases>
52+
<enabled>true</enabled>
53+
</releases>
54+
</repository>
55+
56+
4857
<repository>
4958
<id>OSS Sonatype</id>
5059
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>

0 commit comments

Comments
 (0)