Skip to content

Commit

Permalink
[maven-release-plugin] prepare release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
david-waltermire committed Feb 10, 2022
1 parent 8ed5cc9 commit 14f646e
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 166 deletions.
2 changes: 1 addition & 1 deletion metaschema-java-binding-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.6.0</version>
</parent>

<artifactId>metaschema-java-binding-annotations</artifactId>
Expand Down
6 changes: 2 additions & 4 deletions metaschema-java-binding/pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?xml version="1.0"?>
<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">
<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>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.6.0</version>
</parent>

<artifactId>metaschema-java-binding</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion metaschema-java-codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.6.0</version>
</parent>

<artifactId>metaschema-java-codegen</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion metaschema-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.6.0</version>
</parent>

<artifactId>metaschema-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion metaschema-model-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.6.0</version>
</parent>

<artifactId>metaschema-model-common</artifactId>
Expand Down
313 changes: 157 additions & 156 deletions metaschema-model/pom.xml
Original file line number Diff line number Diff line change
@@ -1,156 +1,157 @@
<?xml version="1.0"?>
<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>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
</parent>

<artifactId>metaschema-model</artifactId>

<name>Metaschema XML Implementation</name>

<url>${site.url}${project.artifactId}/</url>
<distributionManagement>
<site>
<id>nist-pages</id>
<url>${site.url}${project.artifactId}/</url>
</site>
</distributionManagement>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>metaschema-model-common</artifactId>
</dependency>

<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${project.build.directory}/generated-resources/xmlbeans</directory>
</resource>
</resources>
<!-- <sourceDirectory>${project.build.directory}/generated-sources/xmlbeans</sourceDirectory> -->
<!-- <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<excludeRoots>
<excludeRoot>${project.build.directory}/generated-sources/xmlbeans</excludeRoot>
</excludeRoots>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<sourceDirectories>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<sourceDirectory>${project.build.testSourceDirectory}</sourceDirectory>
</sourceDirectories>
</configuration>
</plugin>

<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>gov.nist.itl.metaschema.model.m4.xml:gov.nist.itl.metaschema.model.m4.xml.impl</excludePackageNames>
</configuration>
</plugin>
-->
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-sources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/schema/xsd</outputDirectory>
<resources>
<resource>
<directory>metaschema/toolchains/xslt-M4/validate</directory>
<includes>
<include>metaschema.xsd</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<executions>
<execution>
<id>metaschema-M4</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceDir>${project.build.directory}/schema/xsd</sourceDir>
<javaTargetDir>${project.build.directory}/generated-sources/xmlbeans</javaTargetDir>
<xmlConfigs>${project.basedir}/src/main/xsdconfig/metaschema-M4.xsdconfig</xmlConfigs>
<classTargetDir>${project.basedir}/target/generated-resources/xmlbeans</classTargetDir>
<name>metaschema</name>
<partialMethods>ALL,-XGET,-XSET,-XGET_ARRAY,-XSET_ARRAY,-XGET_IDX,-XSET_IDX</partialMethods>
<!--
<repackage>gov.nist.secauto.metaschema.model.xmlbeans</repackage>
-->
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/xmlbeans</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build></project>
<?xml version="1.0"?>
<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>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.6.0</version>
</parent>

<artifactId>metaschema-model</artifactId>

<name>Metaschema XML Implementation</name>

<url>${site.url}${project.artifactId}/</url>
<distributionManagement>
<site>
<id>nist-pages</id>
<url>${site.url}${project.artifactId}/</url>
</site>
</distributionManagement>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>metaschema-model-common</artifactId>
</dependency>

<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
</dependency>
<dependency>
<groupId>xml-resolver</groupId>
<artifactId>xml-resolver</artifactId>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-jul</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${project.build.directory}/generated-resources/xmlbeans</directory>
</resource>
</resources>
<!-- <sourceDirectory>${project.build.directory}/generated-sources/xmlbeans</sourceDirectory> -->
<!-- <sourceDirectory>${project.basedir}/src/main/java</sourceDirectory> -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<excludeRoots>
<excludeRoot>${project.build.directory}/generated-sources/xmlbeans</excludeRoot>
</excludeRoots>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<sourceDirectories>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<sourceDirectory>${project.build.testSourceDirectory}</sourceDirectory>
</sourceDirectories>
</configuration>
</plugin>

<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>gov.nist.itl.metaschema.model.m4.xml:gov.nist.itl.metaschema.model.m4.xml.impl</excludePackageNames>
</configuration>
</plugin>
-->
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-resources</id>
<phase>generate-sources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/schema/xsd</outputDirectory>
<resources>
<resource>
<directory>metaschema/toolchains/xslt-M4/validate</directory>
<includes>
<include>metaschema.xsd</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<executions>
<execution>
<id>metaschema-M4</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceDir>${project.build.directory}/schema/xsd</sourceDir>
<javaTargetDir>${project.build.directory}/generated-sources/xmlbeans</javaTargetDir>
<xmlConfigs>${project.basedir}/src/main/xsdconfig/metaschema-M4.xsdconfig</xmlConfigs>
<classTargetDir>${project.basedir}/target/generated-resources/xmlbeans</classTargetDir>
<name>metaschema</name>
<partialMethods>ALL,-XGET,-XSET,-XGET_ARRAY,-XSET_ARRAY,-XGET_IDX,-XSET_IDX</partialMethods>
<!--
<repackage>gov.nist.secauto.metaschema.model.xmlbeans</repackage>
-->
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/xmlbeans</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</parent>
<groupId>gov.nist.secauto.metaschema</groupId>
<artifactId>metaschema-framework</artifactId>
<version>0.5.1-SNAPSHOT</version>
<version>0.6.0</version>

<packaging>pom</packaging>

Expand All @@ -25,7 +25,7 @@
<url>https://github.com/usnistgov/metaschema-java/tree/main</url>
<connection>scm:git:[email protected]/usnistgov/metaschema-java.git</connection>
<developerConnection>scm:git:[email protected]:usnistgov/metaschema-java.git</developerConnection>
<tag>HEAD</tag>
<tag>v0.6.0</tag>
</scm>

<distributionManagement>
Expand Down

0 comments on commit 14f646e

Please sign in to comment.