Skip to content

Commit

Permalink
[maven-release-plugin] prepare release mybatis-migrations-3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
simonetripodi committed Sep 29, 2013
1 parent 9a7cff3 commit 2954a80
Showing 1 changed file with 173 additions and 174 deletions.
347 changes: 173 additions & 174 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,174 +1,173 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2010-2013 The MyBatis Team
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-parent</artifactId>
<version>18</version>
</parent>

<artifactId>mybatis-migrations</artifactId>
<version>3.1.1-SNAPSHOT</version>

<name>MyBatis Migrations</name>
<url>http://www.mybatis.org/migrations/</url>

<contributors>
<contributor>
<name>Riccardo Cossu</name>
<email>[email protected]</email>
</contributor>
</contributors>

<scm>
<url>http://github.com/mybatis/migrations</url>
<connection>scm:git:ssh://github.com/mybatis/migrations.git</connection>
<developerConnection>scm:git:git+ssh://[email protected]/mybatis/migrations.git</developerConnection>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issue Management</system>
<url>https://github.com/mybatis/migrations/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/mybatis/migrations</url>
</ciManagement>
<distributionManagement>
<site>
<id>github</id>
<url>gitsite:[email protected]/mybatis/migrations.git</url>
</site>
</distributionManagement>

<properties>
<findbugs.onlyAnalyze>org.apache.ibatis.migration</findbugs.onlyAnalyze>
<clirr.comparisonVersion>3.1.0</clirr.comparisonVersion>
</properties>

<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.3-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.9.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>LICENSE</include>
<include>NOTICE</include>
</includes>
</resource>
<resource>
<directory>${project.build.sourceDirectory}</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/pom.properties</exclude>
</excludes>
</resource>
<resource>
<directory>${project.build.sourceDirectory}</directory>
<filtering>true</filtering>
<includes>
<include>**/pom.properties</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>${project.build.testSourceDirectory}</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
<extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments>
<binFileExtensions>
<windows>.cmd</windows>
</binFileExtensions>
<programs>
<program>
<mainClass>org.apache.ibatis.migration.Migrator</mainClass>
<name>migrate</name>
</program>
</programs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptors>
<descriptor>${basedir}/src/main/assembly/bundle.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

</project>
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2010-2013 The MyBatis Team
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-parent</artifactId>
<version>18</version>
</parent>

<artifactId>mybatis-migrations</artifactId>
<version>3.1.1</version>

<name>MyBatis Migrations</name>
<url>http://www.mybatis.org/migrations/</url>

<contributors>
<contributor>
<name>Riccardo Cossu</name>
<email>[email protected]</email>
</contributor>
</contributors>

<scm>
<url>http://github.com/mybatis/migrations</url>
<connection>scm:git:ssh://github.com/mybatis/migrations.git</connection>
<developerConnection>scm:git:git+ssh://[email protected]/mybatis/migrations.git</developerConnection>
<tag>mybatis-migrations-3.1.1</tag>
</scm>
<issueManagement>
<system>GitHub Issue Management</system>
<url>https://github.com/mybatis/migrations/issues</url>
</issueManagement>
<ciManagement>
<system>Travis CI</system>
<url>https://travis-ci.org/mybatis/migrations</url>
</ciManagement>
<distributionManagement>
<site>
<id>github</id>
<url>gitsite:[email protected]/mybatis/migrations.git</url>
</site>
</distributionManagement>

<properties>
<findbugs.onlyAnalyze>org.apache.ibatis.migration</findbugs.onlyAnalyze>
<clirr.comparisonVersion>3.1.0</clirr.comparisonVersion>
</properties>

<dependencies>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.2.3</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.9.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<resources>
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<includes>
<include>LICENSE</include>
<include>NOTICE</include>
</includes>
</resource>
<resource>
<directory>${project.build.sourceDirectory}</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/pom.properties</exclude>
</excludes>
</resource>
<resource>
<directory>${project.build.sourceDirectory}</directory>
<filtering>true</filtering>
<includes>
<include>**/pom.properties</include>
</includes>
</resource>
</resources>
<testResources>
<testResource>
<directory>${project.build.testSourceDirectory}</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>assemble</goal>
</goals>
</execution>
</executions>
<configuration>
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
<extraJvmArguments>-Xms500m -Xmx500m -XX:PermSize=128m -XX:-UseGCOverheadLimit</extraJvmArguments>
<binFileExtensions>
<windows>.cmd</windows>
</binFileExtensions>
<programs>
<program>
<mainClass>org.apache.ibatis.migration.Migrator</mainClass>
<name>migrate</name>
</program>
</programs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<descriptors>
<descriptor>${basedir}/src/main/assembly/bundle.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

</project>

0 comments on commit 2954a80

Please sign in to comment.