-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
112 lines (107 loc) · 4.38 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?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>
<parent>
<groupId>org.broadleafcommerce</groupId>
<artifactId>broadleaf-module-parent</artifactId>
<version>1.0.14-GA</version>
</parent>
<groupId>org.broadleafcommerce</groupId>
<artifactId>broadleaf-google-storage</artifactId>
<name>BroadleafCommerce Google Storage</name>
<description>Broadleaf Google Storage Integration</description>
<version>1.0.0-SNAPSHOT</version>
<properties>
<project.uri>${project.baseUri}</project.uri>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<blc.version>5.1.5-GA</blc.version>
<jclouds.version>2.0.1</jclouds.version>
</properties>
<scm>
<connection>scm:git:[email protected]:BroadleafCommerce/blc-google-storage.git</connection>
<developerConnection>scm:git:[email protected]:BroadleafCommerce/blc-google-storage.git</developerConnection>
<url>https://github.com/BroadleafCommerce/blc-google-storage</url>
<tag>HEAD</tag>
</scm>
<url>http://www.broadleafcommerce.com</url>
<licenses>
<license>
<name>Broadleaf Fair Use 1.0</name>
<url>http://license.broadleafcommerce.org/fair_use_license-1.0.txt</url>
<distribution>repo</distribution>
<comments>Fair Use Community License</comments>
</license>
<license>
<name>Broadleaf End User License Agreement 1.1</name>
<url>http://license.broadleafcommerce.org/commercial_license-1.1.txt</url>
<distribution>repo</distribution>
<comments>Commercial License Applicable When Bounds of Fair Use License Are Exceeded</comments>
</license>
</licenses>
<developers>
<developer>
<id>architect</id>
<email>[email protected]</email>
<organization>Broadleaf Commerce</organization>
<organizationUrl>http://www.broadleafcommerce.org</organizationUrl>
<timezone>-6</timezone>
</developer>
</developers>
<repositories>
<repository>
<id>public snapshots</id>
<name>public snapshots</name>
<url>http://www.broadleafcommerce.org/nexus/content/repositories/snapshots</url>
</repository>
<repository>
<id>public releases</id>
<name>public releases</name>
<url>http://www.broadleafcommerce.org/nexus/content/repositories/releases</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
<url>http://nexus.broadleafcommerce.org/nexus/content/repositories/google-storage-snapshots/</url>
</snapshotRepository>
<repository>
<id>releases</id>
<url>http://nexus.broadleafcommerce.org/nexus/content/repositories/google-storage-releases/</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>1.5.1</version>
</dependency>
<dependency>
<groupId>org.broadleafcommerce</groupId>
<artifactId>broadleaf-common</artifactId>
<version>${blc.version}</version>
<scope>compile</scope>
<type>jar</type>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.broadleafcommerce</groupId>
<artifactId>broadleaf-third-party-integration-config</artifactId>
<version>default</version>
<scope>test</scope>
<type>jar</type>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<type>jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<type>jar</type>
<scope>test</scope>
</dependency>
</dependencies>
</project>