Skip to content

Commit

Permalink
[maven-release-plugin] prepare release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Feb 18, 2016
1 parent 7da2627 commit 1058eb7
Show file tree
Hide file tree
Showing 27 changed files with 246 additions and 247 deletions.
50 changes: 25 additions & 25 deletions core/api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?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>

<parent>
<groupId>com.blazebit</groupId>
<artifactId>blaze-persistence-core</artifactId>
<version>1.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>blaze-persistence-core-api</artifactId>
<packaging>jar</packaging>

<name>Blazebit Persistence Core API</name>

<dependencies>
<!-- Actually we only need JPA but since there is no official artifact we rather use this than provider specific apis -->
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
<?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>

<parent>
<groupId>com.blazebit</groupId>
<artifactId>blaze-persistence-core</artifactId>
<version>1.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>blaze-persistence-core-api</artifactId>
<packaging>jar</packaging>

<name>Blazebit Persistence Core API</name>

<dependencies>
<!-- Actually we only need JPA but since there is no official artifact we rather use this than provider specific apis -->
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
162 changes: 81 additions & 81 deletions core/impl/pom.xml
Original file line number Diff line number Diff line change
@@ -1,81 +1,81 @@
<?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>

<parent>
<groupId>com.blazebit</groupId>
<artifactId>blaze-persistence-core</artifactId>
<version>1.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>blaze-persistence-core-impl</artifactId>
<packaging>jar</packaging>

<name>Blazebit Persistence Core Impl</name>

<dependencies>
<!-- Project dependencies -->

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-persistence-core-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-persistence-core-parser</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-common-utils</artifactId>
</dependency>

<!-- Actually we only need JPA but since there is no official artifact
we rather use this than provider specific apis -->
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-injection-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>bytecode</goal>
</goals>
</execution>
</executions>
<configuration>
<bytecodeInjections>
<bytecodeInjection>
<expression>${project.version}</expression>
<targetMembers>
<methodBodyReturn>
<className>com.blazebit.persistence.impl.Version$Injected</className>
<methodName>getVersion</methodName>
</methodBodyReturn>
</targetMembers>
</bytecodeInjection>
<bytecodeInjection>
<expression>${blaze-persistence.codename}</expression>
<targetMembers>
<methodBodyReturn>
<className>com.blazebit.persistence.impl.Version$Injected</className>
<methodName>getCodename</methodName>
</methodBodyReturn>
</targetMembers>
</bytecodeInjection>
</bytecodeInjections>
</configuration>
</plugin>
</plugins>
</build>

</project>
<?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>

<parent>
<groupId>com.blazebit</groupId>
<artifactId>blaze-persistence-core</artifactId>
<version>1.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>blaze-persistence-core-impl</artifactId>
<packaging>jar</packaging>

<name>Blazebit Persistence Core Impl</name>

<dependencies>
<!-- Project dependencies -->

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-persistence-core-api</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-persistence-core-parser</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-common-utils</artifactId>
</dependency>

<!-- Actually we only need JPA but since there is no official artifact
we rather use this than provider specific apis -->
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-injection-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>bytecode</goal>
</goals>
</execution>
</executions>
<configuration>
<bytecodeInjections>
<bytecodeInjection>
<expression>${project.version}</expression>
<targetMembers>
<methodBodyReturn>
<className>com.blazebit.persistence.impl.Version$Injected</className>
<methodName>getVersion</methodName>
</methodBodyReturn>
</targetMembers>
</bytecodeInjection>
<bytecodeInjection>
<expression>${blaze-persistence.codename}</expression>
<targetMembers>
<methodBodyReturn>
<className>com.blazebit.persistence.impl.Version$Injected</className>
<methodName>getCodename</methodName>
</methodBodyReturn>
</targetMembers>
</bytecodeInjection>
</bytecodeInjections>
</configuration>
</plugin>
</plugins>
</build>

</project>
184 changes: 92 additions & 92 deletions core/parser/pom.xml
Original file line number Diff line number Diff line change
@@ -1,92 +1,92 @@
<?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>

<parent>
<groupId>com.blazebit</groupId>
<artifactId>blaze-persistence-core</artifactId>
<version>1.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>blaze-persistence-core-parser</artifactId>
<packaging>jar</packaging>

<name>Blazebit Persistence Core Parser</name>

<dependencies>
<!-- Project dependencies -->

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-common-utils</artifactId>
</dependency>

<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.5.1</version>
<exclusions>
<exclusion>
<artifactId>org.abego.treelayout.core</artifactId>
<groupId>org.abego.treelayout</groupId>
</exclusion>
</exclusions>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>junit-benchmarks</artifactId>
<version>0.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.5.1</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>antlr4</goal>
</goals>
<configuration>
<outputDirectory>target/generated/antlr</outputDirectory>
<visitor>true</visitor>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-antlr4-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated/antlr</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

</build>
</project>
<?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>

<parent>
<groupId>com.blazebit</groupId>
<artifactId>blaze-persistence-core</artifactId>
<version>1.1.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>blaze-persistence-core-parser</artifactId>
<packaging>jar</packaging>

<name>Blazebit Persistence Core Parser</name>

<dependencies>
<!-- Project dependencies -->

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>blaze-common-utils</artifactId>
</dependency>

<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>4.5.1</version>
<exclusions>
<exclusion>
<artifactId>org.abego.treelayout.core</artifactId>
<groupId>org.abego.treelayout</groupId>
</exclusion>
</exclusions>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>junit-benchmarks</artifactId>
<version>0.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>4.5.1</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>antlr4</goal>
</goals>
<configuration>
<outputDirectory>target/generated/antlr</outputDirectory>
<visitor>true</visitor>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-antlr4-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>target/generated/antlr</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

</build>
</project>
Loading

0 comments on commit 1058eb7

Please sign in to comment.