Skip to content

Commit 3824ed6

Browse files
committed
Update pom.xml and add CHANGELOG.md placeholders
1 parent c57b218 commit 3824ed6

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed

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.14-alpha (2022-09-09 / 6796c21)
210

311
## Added

pom.xml

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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>launchpad</artifactId>
6+
<version>0.1.14-alpha</version>
7+
<name>launchpad</name>
8+
<description>Clojure dev process launcher</description>
9+
<url>https://github.com/lambdaisland/launchpad</url>
10+
<inceptionYear>2022</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>MPL-2.0</name>
21+
<url>https://www.mozilla.org/media/MPL/2.0/index.txt</url>
22+
</license>
23+
</licenses>
24+
<scm>
25+
<url>https://github.com/lambdaisland/launchpad</url>
26+
<connection>scm:git:git://github.com/lambdaisland/launchpad.git</connection>
27+
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/launchpad.git</developerConnection>
28+
<tag>c57b218c5b7f43e4f1e28edea5e93af31a52a44c</tag>
29+
</scm>
30+
<dependencies>
31+
<dependency>
32+
<groupId>org.clojure</groupId>
33+
<artifactId>clojure</artifactId>
34+
<version>1.11.1</version>
35+
</dependency>
36+
</dependencies>
37+
<build>
38+
<sourceDirectory>src</sourceDirectory>
39+
<resources>
40+
<resource>
41+
<directory>src</directory>
42+
</resource>
43+
<resource>
44+
<directory>resources</directory>
45+
</resource>
46+
</resources>
47+
<plugins>
48+
<plugin>
49+
<groupId>org.apache.maven.plugins</groupId>
50+
<artifactId>maven-compiler-plugin</artifactId>
51+
<version>3.8.1</version>
52+
<configuration>
53+
<source>1.8</source>
54+
<target>1.8</target>
55+
</configuration>
56+
</plugin>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-jar-plugin</artifactId>
60+
<version>3.2.0</version>
61+
<configuration>
62+
<archive>
63+
<manifestEntries>
64+
<git-revision>c57b218c5b7f43e4f1e28edea5e93af31a52a44c</git-revision>
65+
</manifestEntries>
66+
</archive>
67+
</configuration>
68+
</plugin>
69+
<plugin>
70+
<groupId>org.apache.maven.plugins</groupId>
71+
<artifactId>maven-gpg-plugin</artifactId>
72+
<version>1.6</version>
73+
<executions>
74+
<execution>
75+
<id>sign-artifacts</id>
76+
<phase>verify</phase>
77+
<goals>
78+
<goal>sign</goal>
79+
</goals>
80+
</execution>
81+
</executions>
82+
</plugin>
83+
</plugins>
84+
</build>
85+
<repositories>
86+
<repository>
87+
<id>clojars</id>
88+
<url>https://repo.clojars.org/</url>
89+
</repository>
90+
</repositories>
91+
<distributionManagement>
92+
<repository>
93+
<id>clojars</id>
94+
<name>Clojars repository</name>
95+
<url>https://clojars.org/repo</url>
96+
</repository>
97+
</distributionManagement>
98+
</project>

0 commit comments

Comments
 (0)