All Downloads are FREE. Search and download functionalities are using the official Maven repository.

useway.core.causeway-schema.3.1.0.source-code.pom.xml Maven / Gradle / Ivy

<?xml version="1.0" encoding="UTF-8"?>
<!--
  Licensed to the Apache Software Foundation (ASF) under one
  or more contributor license agreements.  See the NOTICE file
  distributed with this work for additional information
  regarding copyright ownership.  The ASF licenses this file
  to you 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.apache.causeway.core</groupId>
		<artifactId>causeway-core</artifactId>
		<version>3.1.0</version>
		<relativePath>../../core/pom.xml</relativePath>
	</parent>

	<artifactId>causeway-schema</artifactId>

	<packaging>jar</packaging>
	<name>Apache Causeway Api - Schemas</name>
	<description>
        Apache Causeway schemas, for conversion into canonical DTOs (for use in integration scenarios).
    </description>

	<properties>
		<jar-plugin.automaticModuleName>org.apache.causeway.schema</jar-plugin.automaticModuleName>
		<git-plugin.propertiesDir>org/apache/causeway/schema</git-plugin.propertiesDir>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-context</artifactId>
		</dependency>
		<dependency>
			<groupId>jakarta.xml.bind</groupId>
			<artifactId>jakarta.xml.bind-api</artifactId>
		</dependency>
		<dependency>
			<groupId>jakarta.inject</groupId>
			<artifactId>jakarta.inject-api</artifactId>
		</dependency>
	</dependencies>
	<profiles>

		<profile>
			<id>xsd-to-java</id>
			<activation>
				<property>
					<name>!skip.xsd-to-java</name>
				</property>
			</activation>

			<build>
				<plugins>

					<plugin>
						<groupId>org.jvnet.jaxb2.maven2</groupId>
						<artifactId>maven-jaxb2-plugin</artifactId>
						<version>0.15.3</version>
						<executions>
							<execution>
								<id>generate-chg-xsd</id>
								<phase>generate-sources</phase>
								<goals>
									<goal>generate</goal>
								</goals>
								<configuration>
									<schemaDirectory>src/main/resources/schema</schemaDirectory>
									<schemaIncludes>
										<schemaInclude>**/*.xsd</schemaInclude>
									</schemaIncludes>
									<bindingDirectory>src/main/resources/schema</bindingDirectory>
									<bindingIncludes>
										<bindingInclude>**/bindings.xml</bindingInclude>
									</bindingIncludes>
									<args>
										<arg>-extension</arg>
										<arg>-Xnamespace-prefix</arg>
										<arg>-Xannotate</arg>
									</args>
									<extension>true</extension>
								</configuration>
							</execution>
						</executions>
						<dependencies>
							<dependency>
							      <groupId>jakarta.xml.bind</groupId>
							      <artifactId>jakarta.xml.bind-api</artifactId>
							      <version>4.0.2</version>
						    </dependency>
						    <dependency>
							      <groupId>jakarta.inject</groupId>
							      <artifactId>jakarta.inject-api</artifactId>
							      <version>2.0.1</version>
						    </dependency>
						    <dependency>
							    <groupId>javax.xml.bind</groupId>
							    <artifactId>jaxb-api</artifactId>
							    <version>2.3.1</version>
							</dependency>
							<dependency>
								<groupId>org.jvnet.jaxb2_commons</groupId>
								<artifactId>jaxb2-namespace-prefix</artifactId>
								<version>1.3</version>  <!-- don't upgrade from 1.3 to 2.x, 
										as this fragile combination of plugins will otherwise
										produce invalid annotations -->
							</dependency>
							<dependency>
								<groupId>org.jvnet.jaxb2_commons</groupId>
								<artifactId>jaxb2-basics-annotate</artifactId>
								<version>1.1.0</version>
							</dependency>
						</dependencies>
					</plugin>
					<plugin>
						<groupId>org.codehaus.mojo</groupId>
						<artifactId>build-helper-maven-plugin</artifactId>
						<version>3.6.0</version>
						<executions>
							<execution>
								<id>add-source</id>
								<phase>generate-sources</phase>
								<goals>
									<goal>add-source</goal>
								</goals>
								<configuration>
									<sources>
										<source>target/generated-sources/xjc</source>
									</sources>
								</configuration>
							</execution>
						</executions>
					</plugin>
					<plugin>
						<!-- we resort to drastic means here using ant to post-process outdated namespaces -->
		                <groupId>org.apache.maven.plugins</groupId>
		                <artifactId>maven-antrun-plugin</artifactId>
		                <executions>
		                    <execution>
		                        <id>patch-javax-to-jakarta-ns</id>
		                        <phase>generate-sources</phase>
		                        <goals>
		                            <goal>run</goal>
		                        </goals>
		                        <configuration>
		                            <target>
										<replace 
											dir="target/generated-sources/xjc"
											token="javax.xml.bind" 
											value="jakarta.xml.bind">
											<include name="**/*.java"/>
										</replace>
		                            </target>
		                        </configuration>
		                    </execution>
		                </executions>
            		</plugin>

<!-- generates jakarta namespaces - but (sub) plugins do fail
					<plugin>
					    <groupId>org.codehaus.mojo</groupId>
					    <artifactId>jaxb2-maven-plugin</artifactId>
					    <version>3.1.0</version>
					    <executions>
					        <execution>
					            <id>xjc</id>
					            <goals>
					                <goal>xjc</goal>
					            </goals>
					            <configuration>
									<arguments>
										<argument>-Xnamespace-prefix</argument>
										<argument>-Xannotate</argument>
									</arguments>
								</configuration>
					        </execution>
					    </executions>
					    <configuration>
					        <xjbSources>
					            <xjbSource>src/main/resources/org/apache/causeway/schema/bindings.xjb</xjbSource>
					        </xjbSources>
					        <sources>
								<source>src/main/resources/org/apache/causeway/schema/common/common-2.0.xsd</source>
								<source>src/main/resources/org/apache/causeway/schema/cmd/cmd-2.0.xsd</source>
								<source>src/main/resources/org/apache/causeway/schema/ixn/ixn-2.0.xsd</source>
								<source>src/main/resources/org/apache/causeway/schema/chg/chg-2.0.xsd</source>
								<source>src/main/resources/org/apache/causeway/schema/metamodel/metamodel-2.0.xsd</source>
					        </sources>
					        <outputDirectory>${basedir}/target/generated-sources/xjc</outputDirectory>
					        <clearOutputDir>false</clearOutputDir>
					    </configuration>
					    <dependencies>
							<dependency>
							      <groupId>jakarta.xml.bind</groupId>
							      <artifactId>jakarta.xml.bind-api</artifactId>
							      <version>4.0.2</version>
						    </dependency>
							<dependency>
							    <groupId>javax.xml.bind</groupId>
							    <artifactId>jaxb-api</artifactId>
							    <version>2.3.1</version>
							</dependency>
							<dependency>
							      <groupId>jakarta.inject</groupId>
							      <artifactId>jakarta.inject-api</artifactId>
							      <version>2.0.1</version>
						    </dependency>
							<dependency>
								<groupId>org.jvnet.jaxb2_commons</groupId>
								<artifactId>jaxb2-namespace-prefix</artifactId>
								<version>2.0</version>
							</dependency>
			                <dependency>
         				    	<groupId>org.jvnet.jaxb2_commons</groupId>
								<artifactId>jaxb2-basics-annotate</artifactId>
								<version>1.1.0</version>
                			</dependency>
						</dependencies>
					</plugin>

					-->
				</plugins>
			</build>
		</profile>
	</profiles>
</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy