-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release 1.1.0
- Loading branch information
Showing
27 changed files
with
246 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.