forked from metaschema-framework/metaschema-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfd24c9
commit 03dfd3b
Showing
2 changed files
with
25 additions
and
33 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
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 |
---|---|---|
|
@@ -17,17 +17,27 @@ | |
Metaschema framework.</description> | ||
<url>${site.url}</url> | ||
<issueManagement> | ||
<url>https://github.com/usnistgov/metaschema-java/issues</url> | ||
<url>https://github.com/metaschema-framework/metaschema-java/issues</url> | ||
<system>GitHub Issues</system> | ||
</issueManagement> | ||
<scm> | ||
<url>https://github.com/usnistgov/metaschema-java/tree/main</url> | ||
<connection>scm:git:[email protected]/usnistgov/metaschema-java.git</connection> | ||
<url>https://github.com/metaschema-framework/metaschema-java/tree/main</url> | ||
<connection>scm:git:[email protected]/metaschema-framework/metaschema-java.git</connection> | ||
<developerConnection> | ||
scm:git:[email protected]:usnistgov/metaschema-java.git</developerConnection> | ||
scm:git:[email protected]:metaschema-framework/metaschema-java.git</developerConnection> | ||
<tag>v0.12.0</tag> | ||
</scm> | ||
<distributionManagement> | ||
<snapshotRepository> | ||
<id>github</id> | ||
<name>GitHub Packages</name> | ||
<url>https://maven.pkg.github.com/david-waltermire/metaschema-java</url> | ||
</snapshotRepository> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub Packages</name> | ||
<url>https://maven.pkg.github.com/david-waltermire/metaschema-java</url> | ||
</repository> | ||
<snapshotRepository> | ||
<id>ossrh</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
|
@@ -43,51 +53,32 @@ | |
</distributionManagement> | ||
<licenses> | ||
<license> | ||
<name>NIST License</name> | ||
<url>https://www.nist.gov/director/licensing</url> | ||
<name>Public Domain</name> | ||
<url>https://creativecommons.org/publicdomain/zero/1.0/legalcode</url> | ||
<distribution>repo</distribution> | ||
<comments>NIST software License</comments> | ||
</license> | ||
</licenses> | ||
<organization> | ||
<name>National Institute of Standards and Technology</name> | ||
<url>https://www.nist.gov</url> | ||
<name>metaschema.dev</name> | ||
<url>https://metaschema.dev</url> | ||
</organization> | ||
<developers> | ||
<developer> | ||
<id>[email protected]</id> | ||
<id>[email protected]</id> | ||
<name>David Waltermire</name> | ||
<email>[email protected]</email> | ||
<organization>National Institute of Standards and Technology</organization> | ||
<email>[email protected]</email> | ||
<roles> | ||
<role>architect</role> | ||
<role>developer</role> | ||
<role>maintainer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
<mailingLists> | ||
<mailingList> | ||
<name>OSCAL NIST Team</name> | ||
<post>[email protected]</post> | ||
</mailingList> | ||
<mailingList> | ||
<name>OSCAL Project Development Discussion</name> | ||
<post>[email protected]</post> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
</mailingList> | ||
<mailingList> | ||
<name>OSCAL Project Updates</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
</mailingList> | ||
</mailingLists> | ||
<properties> | ||
<!-- site configuration --> | ||
<site.url>https://pages.nist.gov/metaschema-java/</site.url> | ||
<scm.url>https://github.com/usnistgov/metaschema-java</scm.url> | ||
<issueManagement.url>https://github.com/usnistgov/metaschema-java/issues</issueManagement.url> | ||
<site.url>https://metaschema-java.metaschema.dev/</site.url> | ||
<scm.url>https://github.com/david-waltermire/metaschema-java</scm.url> | ||
<issueManagement.url>https://github.com/david-waltermire/metaschema-java/issues</issueManagement.url> | ||
<!-- | ||
================================================================================ --> | ||
<!-- Web dependencies version --> | ||
|