Doc updates

This commit is contained in:
jamesagnew 2014-08-09 12:18:47 -04:00
parent e17af44a09
commit 3e2cfcd02d
4 changed files with 41 additions and 6 deletions

View File

@ -33,6 +33,27 @@
</section>
<section name="Using Snapshot Builds">
<p>
Snapshot builds of HAPI are pre-release builds which can contain
fixes and new features not yet released in a formal release. To use
snapshot builds of HAPI you may need to add a reference to the OSS snapshot
repository to your project pom.xml:
</p>
<source><![CDATA[<repositories>
<repository>
<id>oss-snapshots</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>]]></source>
</section>
</body>
</document>

View File

@ -16,12 +16,12 @@
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>

View File

@ -0,0 +1,3 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding/<project>=UTF-8

View File

@ -1,15 +1,16 @@
<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>
<!--
HAPI projects use the OSS parent project. You do not need to use this in your own projects
-->
<parent>
<!--
HAPI projects use the Sonatype OSS parent project.
You do not need to use this in your own projects
-->
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>ca.uhn.hapi.example</groupId>
<artifactId>restful-server-example</artifactId>
<version>0.6-SNAPSHOT</version>
@ -17,6 +18,16 @@
<name>Sample RESTful Server (HAPI-FHIR)</name>
<repositories>
<repository>
<id>oss-snapshots</id>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
<dependencies>
<!-- This dependency includes all neccesary HAPI FHIR classes -->