Skip to content

Commit

Permalink
UNITSOFMEASUREMENT-194: Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
keilw committed Aug 17, 2016
1 parent c51c291 commit f41d47c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ This implementation passes the following **profiles**:

See https://github.com/unitsofmeasurement/unit-tck#profiles

[![Maven Central](https://maven-badges.herokuapp.com/maven-central/tec.uom.impl/uom-impl-enum/badge.svg)](https://maven-badges.herokuapp.com/maven-central/tec.uom.impl/uom-impl-enum)
[![Circle CI](https://circleci.com/gh/unitsofmeasurement/uom-impl-enum.svg?style=svg)](https://circleci.com/gh/unitsofmeasurement/uom-impl-enum)
[![License](http://img.shields.io/badge/license-BSD3-blue.svg?style=flat)](http://opensource.org/licenses/BSD-3-Clause)
41 changes: 33 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<url>http://unitsofmeasurement.github.io/</url>
</organization>
<url>https://github.com/unitsofmeasurement/unit-impl-enum</url>
<description>Lightweight approach based on Java Enums.</description>
<description>Small footprint approach based on Java Enums.</description>
<licenses>
<license>
<name>BSD</name>
Expand Down Expand Up @@ -131,13 +131,38 @@
</instructions>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>1.8</version>
</plugin>
-->
<!-- ======================================================= -->
<!-- Source Attachment -->
<!-- ======================================================= -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<detectLinks>true</detectLinks>
<!-- excludePackageNames>package1</excludePackageNames -->
<keywords>true</keywords>
<linksource>true</linksource>
<failOnError>false</failOnError>
<!-- overview>${basedir}/overview.html</overview -->
<source>${maven.compile.sourceLevel}</source>
<!-- stylesheetfile>${basedir}/src/site/css/money-jdoc.css</stylesheetfile -->
<verbose>true</verbose>
</configuration>
</plugin>

<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
Expand Down

0 comments on commit f41d47c

Please sign in to comment.