Skip to content

Commit

Permalink
Sort pom
Browse files Browse the repository at this point in the history
  • Loading branch information
velo committed Feb 7, 2024
1 parent 9a734ee commit 21cd0e8
Show file tree
Hide file tree
Showing 32 changed files with 1,890 additions and 1,932 deletions.
498 changes: 245 additions & 253 deletions pom.xml

Large diffs are not rendered by default.

70 changes: 35 additions & 35 deletions querydsl-apt/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<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>
Expand All @@ -11,10 +11,10 @@

<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<packaging>jar</packaging>
<name>Querydsl - APT support</name>
<description>APT based Source code generation for Querydsl</description>
<url>${project.homepage}</url>
<packaging>jar</packaging>

<scm>
<connection>${project.checkout}</connection>
Expand Down Expand Up @@ -46,7 +46,7 @@
<version>2.2.3</version>
<scope>provided</scope>
</dependency>

<!-- provided -->
<dependency>
<groupId>org.datanucleus</groupId>
Expand All @@ -61,7 +61,7 @@
<exclusions>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<artifactId>commons-lang3</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
Expand All @@ -79,26 +79,26 @@
<version>${morphia.version}</version>
<scope>provided</scope>
</dependency>

<!-- test -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${jodatime.version}</version>
<scope>test</scope>
</dependency>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>javassist</artifactId>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-envers</artifactId>
Expand All @@ -109,28 +109,36 @@
<groupId>com.querydsl</groupId>
<artifactId>querydsl-core</artifactId>
<version>${project.version}</version>
<scope>test</scope>
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.joda</groupId>
<artifactId>joda-money</artifactId>
<version>0.9</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<repositories>
<!--for org.springframework.roo:org.springframework.roo.annotations -->
<repository>
<id>spring roo repository</id>
<url>http://spring-roo-repository.springsource.org/release</url>
</repository>
</repositories>

<build>
<plugins>
<!--
<!--
<plugin>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-maven-plugin</artifactId>
Expand Down Expand Up @@ -160,8 +168,8 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
</plugin>

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
Expand All @@ -186,17 +194,17 @@
</execution>
</executions>
</plugin>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>apt-jars</id>
<id>apt-jars</id>
<goals>
<goal>single</goal>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<configuration>
<descriptors>
<descriptor>src/main/general.xml</descriptor>
<descriptor>src/main/hibernate.xml</descriptor>
Expand All @@ -209,20 +217,20 @@
</descriptors>
<outputDirectory>${project.build.directory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</execution>
</executions>
</plugin>

<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<executions>
<executions>
<execution>
<phase>generate-test-sources</phase>
<goals>
<goal>test-process</goal>
<goal>add-test-sources</goal>
</goals>
<phase>generate-test-sources</phase>
<configuration>
<outputDirectory>target/generated-test-sources/java</outputDirectory>
<logOnlyOnError>true</logOnlyOnError>
Expand All @@ -231,12 +239,12 @@
<processor>com.querydsl.apt.hibernate.HibernateAnnotationProcessor</processor>
<processor>com.querydsl.apt.jdo.JDOAnnotationProcessor</processor>
<processor>com.querydsl.apt.roo.RooAnnotationProcessor</processor>
</processors>
</processors>
</configuration>
</execution>
</execution>
</executions>
</plugin>

<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
Expand All @@ -260,12 +268,4 @@
</plugins>
</build>

<repositories>
<!--for org.springframework.roo:org.springframework.roo.annotations -->
<repository>
<id>spring roo repository</id>
<url>http://spring-roo-repository.springsource.org/release</url>
</repository>
</repositories>

</project>
85 changes: 42 additions & 43 deletions querydsl-codegen-utils/pom.xml
Original file line number Diff line number Diff line change
@@ -1,49 +1,70 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<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>
<artifactId>codegen-utils</artifactId>
<version>5.0.0-SNAPSHOT</version>
<name>Querydsl - Codegen utils</name>
<description>Code generation and compilation for Java</description>

<parent>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-root</artifactId>
<version>5.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>codegen-utils</artifactId>
<version>5.0.0-SNAPSHOT</version>

<packaging>jar</packaging>
<name>Querydsl - Codegen utils</name>
<description>Code generation and compilation for Java</description>

<inceptionYear>2010</inceptionYear>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>


<developers>
<developer>
<id>tiwe</id>
<name>Timo Westkämper</name>
<email>[email protected]</email>
<organization>Mysema Ltd</organization>
<roles>
<role>Architect</role>
</roles>
</developer>
<developer>
<id>laim</id>
<name>Lassi Immonen</name>
<email>[email protected]</email>
<organization>Mysema Ltd</organization>
<roles>
<role>Consultant</role>
</roles>
</developer>
</developers>

<scm>
<connection>scm:git:[email protected]:querydsl/codegen.git</connection>
<url>[email protected]:querydsl/codegen.git</url>
</scm>
</scm>

<properties>
<commons.collections.version>4.01</commons.collections.version>
<commons.lang.version>3.0.1</commons.lang.version>
<ecj.version>4.6.1</ecj.version>
<osgi.import.package>javax.annotation.*;version="0",javax.tools.*;version="0",org.eclipse.jdt.*;version="3.7.2"${osgi.import.package.root}</osgi.import.package>
</properties>

<dependencies>
<dependency>
<groupId>org.eclipse.jdt.core.compiler</groupId>
<artifactId>ecj</artifactId>
<version>${ecj.version}</version>
</dependency>
</dependency>

<!-- test -->
<dependency>
<groupId>junit</groupId>
Expand All @@ -57,7 +78,14 @@
<scope>provided</scope>
</dependency>
</dependencies>


<pluginRepositories>
<pluginRepository>
<id>com.springsource.repository.bundles.release</id>
<url>http://repository.springsource.com/maven/bundles/release</url>
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -90,33 +118,4 @@
</plugin>
</plugins>
</build>

<pluginRepositories>
<pluginRepository>
<id>com.springsource.repository.bundles.release</id>
<url>http://repository.springsource.com/maven/bundles/release</url>
</pluginRepository>
</pluginRepositories>


<developers>
<developer>
<id>tiwe</id>
<name>Timo Westkämper</name>
<email>[email protected]</email>
<organization>Mysema Ltd</organization>
<roles>
<role>Architect</role>
</roles>
</developer>
<developer>
<id>laim</id>
<name>Lassi Immonen</name>
<email>[email protected]</email>
<organization>Mysema Ltd</organization>
<roles>
<role>Consultant</role>
</roles>
</developer>
</developers>
</project>
Loading

0 comments on commit 21cd0e8

Please sign in to comment.