Skip to content

Commit 79aba18

Browse files
committed
Add snapshots to some modules
1 parent a1a5ec4 commit 79aba18

File tree

5 files changed

+82
-1
lines changed

5 files changed

+82
-1
lines changed

dl4j-distributed-training-examples/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,22 @@
5151
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5252
</properties>
5353

54+
<repositories>
55+
<repository>
56+
<id>sonatype-nexus-snapshots</id>
57+
<name>Sonatype Nexus Snapshots</name>
58+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
59+
<releases>
60+
<enabled>false</enabled>
61+
</releases>
62+
<snapshots>
63+
<enabled>true</enabled>
64+
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
65+
</snapshots>
66+
</repository>
67+
</repositories>
68+
69+
5470
<dependencyManagement>
5571
<dependencies>
5672
<dependency>

dl4j-examples/pom.xml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,24 @@
4646

4747
</properties>
4848

49-
<dependencyManagement>
49+
50+
<repositories>
51+
<repository>
52+
<id>sonatype-nexus-snapshots</id>
53+
<name>Sonatype Nexus Snapshots</name>
54+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
55+
<releases>
56+
<enabled>false</enabled>
57+
</releases>
58+
<snapshots>
59+
<enabled>true</enabled>
60+
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
61+
</snapshots>
62+
</repository>
63+
</repositories>
64+
65+
66+
<dependencyManagement>
5067
<dependencies>
5168
<dependency>
5269
<groupId>org.freemarker</groupId>

nd4j-ndarray-examples/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,22 @@
2727
<name>ND4J Examples operating on ndarrays</name>
2828
<description>Working with NDArrays</description>
2929

30+
<repositories>
31+
<repository>
32+
<id>sonatype-nexus-snapshots</id>
33+
<name>Sonatype Nexus Snapshots</name>
34+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
35+
<releases>
36+
<enabled>false</enabled>
37+
</releases>
38+
<snapshots>
39+
<enabled>true</enabled>
40+
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
41+
</snapshots>
42+
</repository>
43+
</repositories>
44+
45+
3046
<properties>
3147
<dl4j-master.version>1.0.0-SNAPSHOT</dl4j-master.version>
3248
<!-- Change the nd4j.backend property to nd4j-cuda-X-platform to use CUDA GPUs -->

rl4j-examples/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,22 @@
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
</properties>
2020

21+
22+
<repositories>
23+
<repository>
24+
<id>sonatype-nexus-snapshots</id>
25+
<name>Sonatype Nexus Snapshots</name>
26+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
27+
<releases>
28+
<enabled>false</enabled>
29+
</releases>
30+
<snapshots>
31+
<enabled>true</enabled>
32+
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
33+
</snapshots>
34+
</repository>
35+
</repositories>
36+
2137
<dependencies>
2238
<!-- ND4J backend. You need one in every DL4J project. Normally define artifactId as either nd4j-native-platform or nd4j-cuda-X.X-platform to use CUDA GPUs (check parent pom for supported cuda versions) -->
2339
<dependency>

samediff-examples/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,22 @@
4545

4646
</properties>
4747

48+
<repositories>
49+
<repository>
50+
<id>sonatype-nexus-snapshots</id>
51+
<name>Sonatype Nexus Snapshots</name>
52+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
53+
<releases>
54+
<enabled>false</enabled>
55+
</releases>
56+
<snapshots>
57+
<enabled>true</enabled>
58+
<updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
59+
</snapshots>
60+
</repository>
61+
</repositories>
62+
63+
4864

4965
<dependencyManagement>
5066
<dependencies>

0 commit comments

Comments
 (0)