Skip to content

Commit db65508

Browse files
committed
Update pom.xml and add CHANGELOG.md placeholders
1 parent b45dc46 commit db65508

File tree

2 files changed

+111
-0
lines changed

2 files changed

+111
-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.4 (2023-09-06 / 85cc0b6)
210

311
## Added

pom.xml

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
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>morf</artifactId>
6+
<version>0.1.4</version>
7+
<name>morf</name>
8+
<description>deform / with-form macros for reagent</description>
9+
<url>https://github.com/lambdaisland/morf</url>
10+
<inceptionYear>2023</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/morf</url>
26+
<connection>scm:git:git://github.com/lambdaisland/morf.git</connection>
27+
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/morf.git</developerConnection>
28+
<tag>b45dc4691671ce9d127bb1244f5fbf4d81953f55</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+
<dependency>
37+
<groupId>reagent</groupId>
38+
<artifactId>reagent</artifactId>
39+
<version>1.2.0</version>
40+
</dependency>
41+
</dependencies>
42+
<build>
43+
<sourceDirectory>src</sourceDirectory>
44+
<resources>
45+
<resource>
46+
<directory>src</directory>
47+
</resource>
48+
<resource>
49+
<directory>resources</directory>
50+
</resource>
51+
</resources>
52+
<plugins>
53+
<plugin>
54+
<groupId>org.apache.maven.plugins</groupId>
55+
<artifactId>maven-compiler-plugin</artifactId>
56+
<version>3.8.1</version>
57+
<configuration>
58+
<source>1.8</source>
59+
<target>1.8</target>
60+
</configuration>
61+
</plugin>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-jar-plugin</artifactId>
65+
<version>3.2.0</version>
66+
<configuration>
67+
<archive>
68+
<manifestEntries>
69+
<git-revision>b45dc4691671ce9d127bb1244f5fbf4d81953f55</git-revision>
70+
</manifestEntries>
71+
</archive>
72+
</configuration>
73+
</plugin>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-gpg-plugin</artifactId>
77+
<version>1.6</version>
78+
<executions>
79+
<execution>
80+
<id>sign-artifacts</id>
81+
<phase>verify</phase>
82+
<goals>
83+
<goal>sign</goal>
84+
</goals>
85+
</execution>
86+
</executions>
87+
</plugin>
88+
</plugins>
89+
</build>
90+
<repositories>
91+
<repository>
92+
<id>clojars</id>
93+
<url>https://repo.clojars.org/</url>
94+
</repository>
95+
</repositories>
96+
<distributionManagement>
97+
<repository>
98+
<id>clojars</id>
99+
<name>Clojars repository</name>
100+
<url>https://clojars.org/repo</url>
101+
</repository>
102+
</distributionManagement>
103+
</project>

0 commit comments

Comments
 (0)