Skip to content

Commit b1c51ea

Browse files
committed
Add pom.xml
1 parent caefc17 commit b1c51ea

File tree

3 files changed

+123
-1
lines changed

3 files changed

+123
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@
55
gcp-api-descriptors
66
creds.json
77
lib.jar
8-
pom.xml
98
target

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Unreleased
2+
3+
## Added
4+
5+
## Fixed
6+
7+
## Changed
8+
19
# 0.1.60 (2025-12-04 / 8ffb224)
210

311
- Fork from ComputeSoftware/gcp-api

pom.xml

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.lambdaisland</groupId>
5+
<artifactId>gcp-api</artifactId>
6+
<version>0.1.60</version>
7+
<name>gcp-api</name>
8+
<description>data-driven GCP API</description>
9+
<url>https://github.com/lambdaisland/gcp-api</url>
10+
<inceptionYear>2019</inceptionYear>
11+
<organization>
12+
<name>Lambda Island</name>
13+
<url>https://lambdaisland.com</url>
14+
</organization>
15+
<properties>
16+
<project class="build sourceEncoding">UTF-8</project>
17+
</properties>
18+
<licenses>
19+
<license>
20+
<name>Eclipse Public License 1.0</name>
21+
<url>https://www.eclipse.org/legal/epl-v10.html</url>
22+
</license>
23+
</licenses>
24+
<scm>
25+
<url>https://github.com/lambdaisland/gcp-api</url>
26+
<connection>scm:git:git://github.com/lambdaisland/gcp-api.git</connection>
27+
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/gcp-api.git</developerConnection>
28+
<tag>caefc17447907b81fa197687fec17aed7d70c77a</tag>
29+
</scm>
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.clojure</groupId>
33+
<artifactId>core.async</artifactId>
34+
<version>1.8.741</version>
35+
</dependency>
36+
<dependency>
37+
<groupId>com.cognitect</groupId>
38+
<artifactId>anomalies</artifactId>
39+
<version>0.1.12</version>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.clojure</groupId>
43+
<artifactId>data.json</artifactId>
44+
<version>2.5.1</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.google.auth</groupId>
48+
<artifactId>google-auth-library-oauth2-http</artifactId>
49+
<version>1.41.0</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>java-http-clj</groupId>
53+
<artifactId>java-http-clj</artifactId>
54+
<version>0.4.3</version>
55+
</dependency>
56+
</dependencies>
57+
<build>
58+
<sourceDirectory>src</sourceDirectory>
59+
<resources>
60+
<resource>
61+
<directory>src</directory>
62+
</resource>
63+
</resources>
64+
<plugins>
65+
<plugin>
66+
<groupId>org.apache.maven.plugins</groupId>
67+
<artifactId>maven-compiler-plugin</artifactId>
68+
<version>3.8.1</version>
69+
<configuration>
70+
<source>1.8</source>
71+
<target>1.8</target>
72+
</configuration>
73+
</plugin>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-jar-plugin</artifactId>
77+
<version>3.2.0</version>
78+
<configuration>
79+
<archive>
80+
<manifestEntries>
81+
<git-revision>caefc17447907b81fa197687fec17aed7d70c77a</git-revision>
82+
</manifestEntries>
83+
</archive>
84+
</configuration>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-gpg-plugin</artifactId>
89+
<version>1.6</version>
90+
<executions>
91+
<execution>
92+
<id>sign-artifacts</id>
93+
<phase>verify</phase>
94+
<goals>
95+
<goal>sign</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
<repositories>
103+
<repository>
104+
<id>clojars</id>
105+
<url>https://repo.clojars.org/</url>
106+
</repository>
107+
</repositories>
108+
<distributionManagement>
109+
<repository>
110+
<id>clojars</id>
111+
<name>Clojars repository</name>
112+
<url>https://clojars.org/repo</url>
113+
</repository>
114+
</distributionManagement>
115+
</project>

0 commit comments

Comments
 (0)