Skip to content

Commit

Permalink
Update master to new feature 1.1. Add new brekka repository.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Taylor committed Jul 5, 2013
1 parent 64b4cef commit 42c663a
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 34 deletions.
4 changes: 2 additions & 2 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>stillingar-api</artifactId>
<version>1.0.2</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Stillingar - API</name>
Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>stillingar-core</artifactId>
<version>1.0.2</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Stillingar - Core</name>
Expand Down
5 changes: 2 additions & 3 deletions example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
<parent>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>stillingar-example</artifactId>
<version>1.1.0-SNAPSHOT</version>

<name>Stillingar - Example web application</name>

Expand All @@ -22,8 +23,6 @@

<packaging>war</packaging>

<version>1.0.2</version>

<inceptionYear>2011</inceptionYear>

<url>https://github.com/brekka/stillingar/wiki</url>
Expand Down
4 changes: 2 additions & 2 deletions jaxb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>stillingar-jaxb</artifactId>
<version>1.0.2</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Stillingar - JAXB</name>
Expand Down
47 changes: 28 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Stillingar - Root</name>
Expand All @@ -24,8 +24,10 @@
<scm>
<url>https://github.com/brekka/stillingar.git</url>
<connection>https://github.com/brekka/stillingar.git</connection>
<developerConnection>scm:git:ssh://[email protected]:brekka/stillingar.git</developerConnection>
<tag>HEAD</tag>
</scm>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
Expand All @@ -42,6 +44,18 @@
</developer>
</developers>

<distributionManagement>
<repository>
<id>brekka.org</id>
<name>VÍS Maven Repository-releases</name>
<url>https://brekka.org/maven/content/repositories/releases</url>
</repository>
<snapshotRepository>
<id>brekka.org</id>
<url>https://brekka.org/maven/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>

<modules>
<module>api</module>
<module>core</module>
Expand All @@ -51,7 +65,7 @@
<module>jaxb</module>
<module>example</module>
</modules>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -90,37 +104,31 @@
</plugin>
</plugins>
</build>

<dependencyManagement>
<dependencies>
<dependency>
<!--
Only used in XMLBeans based configuration loader.
-->
<!-- Only used in XMLBeans based configuration loader. -->
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>${xmlbeans-version}</version>
</dependency>
<dependency>
<!--
Provide support for Joda-Time in type conversions.
-->
<!-- Provide support for Joda-Time in type conversions. -->
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${joda-time-version}</version>
<optional>true</optional>
</dependency>
<dependency>
<!--
Needed to support type conversion of xsd:base64binary in DOM based operations.
XMLBeans/JAXB take care of this themselves.
-->
<!-- Needed to support type conversion of xsd:base64binary in DOM based operations. XMLBeans/JAXB take care
of this themselves. -->
<groupId>net.iharder</groupId>
<artifactId>base64</artifactId>
<version>${base64-version}</version>
<optional>true</optional>
</dependency>

<!-- Test -->
<dependency>
<groupId>commons-lang</groupId>
Expand Down Expand Up @@ -163,15 +171,16 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<base64-version>2.3.7</base64-version>
<base64-version>2.3.8</base64-version>
<commons-lang-version>2.6</commons-lang-version>
<commons-io-version>2.4</commons-io-version>
<joda-time-version>1.6.2</joda-time-version>
<junit-version>4.10</junit-version>
<log4j-version>1.2.17</log4j-version>
<mockito-version>1.9.5</mockito-version>
<spring-release-version>3.0.7.RELEASE</spring-release-version>
<xmlbeans-version>2.4.0</xmlbeans-version>
<!-- Test only dependencies -->
<junit-version>4.11</junit-version>
<mockito-version>1.9.5</mockito-version>
</properties>

</project>
4 changes: 2 additions & 2 deletions spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<relativePath>../pom.xml</relativePath>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
</parent>
<artifactId>stillingar-spring</artifactId>
<version>1.0.2</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Stillingar - Spring</name>
Expand Down
4 changes: 2 additions & 2 deletions xmlbeans-xpath/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>stillingar-xmlbeans-xpath</artifactId>
<version>1.0.2</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Stillingar - XML Beans XPath enhancement</name>
Expand Down
4 changes: 2 additions & 2 deletions xmlbeans/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<parent>
<groupId>org.brekka.stillingar</groupId>
<artifactId>stillingar</artifactId>
<version>1.0</version>
<version>1.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>stillingar-xmlbeans</artifactId>
<version>1.0.2</version>
<version>1.1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Stillingar - XML Beans</name>
Expand Down

0 comments on commit 42c663a

Please sign in to comment.