Advertisement
aironman

pom`s shared-utilities

Nov 29th, 2019
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. ~ Copyright (c) 2015-2019 Skymind, Inc.
  4. ~
  5. ~ This program and the accompanying materials are made available under the
  6. ~ terms of the Apache License, Version 2.0 which is available at
  7. ~ https://www.apache.org/licenses/LICENSE-2.0.
  8. ~
  9. ~ Unless required by applicable law or agreed to in writing, software
  10. ~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  11. ~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  12. ~ License for the specific language governing permissions and limitations
  13. ~ under the License.
  14. ~
  15. ~ SPDX-License-Identifier: Apache-2.0
  16. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
  17.  
  18. <project xmlns="http://maven.apache.org/POM/4.0.0"
  19. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  20. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  21.  
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <artifactId>deeplearning4j-examples-parent</artifactId>
  25. <groupId>org.deeplearning4j</groupId>
  26. <version>1.0.0-SNAPSHOT</version>
  27. </parent>
  28. <groupId>org.deeplearning4j.examples</groupId>
  29. <artifactId>shared-utilities</artifactId>
  30. <build>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.apache.maven.plugins</groupId>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>${maven-compiler-plugin.version}</version>
  36. <configuration>
  37. <source>${java.version}</source>
  38. <target>${java.version}</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. <name>shared-utilities</name>
  44.  
  45. <dependencies>
  46. <dependency>
  47. <groupId>commons-io</groupId>
  48. <artifactId>commons-io</artifactId>
  49. <version>2.5</version>
  50. </dependency>
  51. <!-- 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) -->
  52. <dependency>
  53. <groupId>org.nd4j</groupId>
  54. <artifactId>${nd4j.backend}</artifactId>
  55. <version>${nd4j.version}</version>
  56. </dependency>
  57. </dependencies>
  58.  
  59. <repositories>
  60. <repository>
  61. <id>snapshots-repo</id>
  62. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  63. <releases>
  64. <enabled>false</enabled>
  65. </releases>
  66. <snapshots>
  67. <enabled>true</enabled>
  68. <updatePolicy>daily</updatePolicy> <!-- Optional, update daily -->
  69. </snapshots>
  70. </repository>
  71. </repositories>
  72.  
  73.  
  74. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement