Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#264] Move maven-plugin project to submodule ahead of migrating jaxb… #280

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion plugin-core/pom.xml → maven-plugin/plugin-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jaxb-maven-plugin-core</artifactId>
<packaging>jar</packaging>
<name>Maven JAXB Plugin Core</name>
<name>JAXB Tools :: Maven Plugin :: Core</name>
<parent>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-maven-plugin-project</artifactId>
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions plugin/pom.xml → maven-plugin/plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jaxb-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>Maven JAXB Plugin</name>
<url>https://github.com/highsource/maven-jaxb2-plugin</url>
<name>JAXB Tools :: Maven Plugin :: Plugin</name>
<url>https://github.com/highsource/jaxb-tools</url>
<parent>
<groupId>org.jvnet.jaxb</groupId>
<artifactId>jaxb-maven-plugin-project</artifactId>
Expand Down
File renamed without changes.
81 changes: 81 additions & 0 deletions maven-plugin/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
<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.jvnet.jaxb</groupId>
<artifactId>jaxb-tools-project</artifactId>
<version>2.0.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>jaxb-maven-plugin-project</artifactId>
<packaging>pom</packaging>
<name>JAXB Tools :: Maven Plugin :: Project</name>
<description>Maven plugin for JAXB XJC compiler to generate Java sources from XML Schemas.</description>
<modules>
<module>plugin-core</module>
<module>plugin</module>
<module>testing</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.version>2.0.9</maven.version>
<jaxb23.version>2.3.7</jaxb23.version>
<jaxb-api.version>2.3.3</jaxb-api.version>
<jaxb.version>${jaxb23.version}</jaxb.version>
<stax-ex.version>1.8.3</stax-ex.version>
<fastinfoset.version>1.2.18</fastinfoset.version>
<dtd-parser.version>1.4.5</dtd-parser.version>
<istack.version>3.0.12</istack.version>
<activation.version>1.2.2</activation.version>
<jaxb2-basics.version>0.12.0</jaxb2-basics.version>
<maven.plugin.testing.version>2.1</maven.plugin.testing.version>
<maven.plugin.plugin.version>3.7.1</maven.plugin.plugin.version>
<maven-nexus-staging-maven-plugin.version>1.6.8</maven-nexus-staging-maven-plugin.version>
<slf4j.version>1.7.25</slf4j.version>
</properties>
<profiles>
<profile>
<id>samples</id>
<activation>
<property>
<name>samples</name>
</property>
</activation>
<modules>
<module>samples</module>
<module>dist</module>
</modules>
</profile>
<profile>
<id>tests</id>
<activation>
<property>
<name>tests</name>
</property>
</activation>
<modules>
<module>tests</module>
</modules>
</profile>
<profile>
<id>all</id>
<activation>
<property>
<name>all</name>
</property>
</activation>
<modules>
<module>dist</module>
<module>samples</module>
<module>tests</module>
</modules>
</profile>
</profiles>
<dependencies>
<!-- JUnit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading