Skip to content

Commit

Permalink
Update pom.xml and add CHANGELOG.md placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
plexus committed Feb 24, 2021
1 parent a23e48e commit ee33d87
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Unreleased

## Added

## Fixed

## Changed

# 0.0.8 (2021-02-24 / 0aa1553)

## Added
Expand Down
88 changes: 88 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?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>
<groupId>lambdaisland</groupId>
<artifactId>data-printers</artifactId>
<version>0.0.8</version>
<name>data-printers</name>
<description>Quickly define print handlers for tagged literals across print/pprint implementations.</description>
<url>https://github.com/lambdaisland/data-printers</url>
<inceptionYear>2021</inceptionYear>
<organization>
<name>Lambda Island</name>
<url>https://lambdaisland.com</url>
</organization>
<licenses>
<license>
<name>MPL-2.0</name>
<url>https://www.mozilla.org/media/MPL/2.0/index.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/lambdaisland/data-printers</url>
<connection>scm:git:git://github.com/lambdaisland/data-printers.git</connection>
<developerConnection>scm:git:ssh://[email protected]/lambdaisland/data-printers.git</developerConnection>
<tag>a23e48e872da77b141cd19a5e741d0fc3ed97ae9</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.2</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<archive>
<manifestEntries>
<git-revision>a23e48e872da77b141cd19a5e741d0fc3ed97ae9</git-revision>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>clojars</id>
<url>https://repo.clojars.org/</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>clojars</id>
<name>Clojars repository</name>
<url>https://clojars.org/repo</url>
</repository>
</distributionManagement>
</project>

0 comments on commit ee33d87

Please sign in to comment.