Skip to content

Commit afec117

Browse files
Adjusted developer settings.
1 parent 2b5e689 commit afec117

File tree

12 files changed

+24
-25
lines changed

12 files changed

+24
-25
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
actions: read
2424
contents: read
2525
security-events: write
26+
packages: write
2627
env:
2728
# BUILD_SNAPSHOT: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') &&
2829
# (github.ref_name == 'develop' || startsWith(github.ref_name, 'release-')) }}
@@ -48,8 +49,6 @@ jobs:
4849
java-version: 11
4950
distribution: 'temurin'
5051
cache: 'maven'
51-
server-username: MAVEN_USERNAME # env variable for username in deploy
52-
server-password: MAVEN_CENTRAL_TOKEN # env variable for token in deploy
5352
# gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import
5453
# gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
5554
- name: Set up JDK 11 (build only)

cli-processor/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<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">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>gov.nist.secauto.metaschema</groupId>
5-
<artifactId>metaschema-framework</artifactId>
4+
<groupId>dev.metaschema-framework</groupId>
5+
<artifactId>parent</artifactId>
66
<version>1.0.0-M2-SNAPSHOT</version>
77
</parent>
88

@@ -19,7 +19,7 @@
1919

2020
<dependencies>
2121
<dependency>
22-
<groupId>gov.nist.secauto.metaschema</groupId>
22+
<groupId>${project.groupId}</groupId>
2323
<artifactId>metaschema-core</artifactId>
2424
</dependency>
2525
<dependency>

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>gov.nist.secauto.metaschema</groupId>
8-
<artifactId>metaschema-framework</artifactId>
7+
<groupId>dev.metaschema-framework</groupId>
8+
<artifactId>parent</artifactId>
99
<version>1.0.0-M2-SNAPSHOT</version>
1010
</parent>
1111

databind-metaschema/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
5-
<groupId>gov.nist.secauto.metaschema</groupId>
6-
<artifactId>metaschema-framework</artifactId>
5+
<groupId>dev.metaschema-framework</groupId>
6+
<artifactId>parent</artifactId>
77
<version>1.0.0-M2-SNAPSHOT</version>
88
</parent>
99

databind/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
5-
<groupId>gov.nist.secauto.metaschema</groupId>
6-
<artifactId>metaschema-framework</artifactId>
5+
<groupId>dev.metaschema-framework</groupId>
6+
<artifactId>parent</artifactId>
77
<version>1.0.0-M2-SNAPSHOT</version>
88
</parent>
99

metaschema-cli/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
5-
<groupId>gov.nist.secauto.metaschema</groupId>
6-
<artifactId>metaschema-framework</artifactId>
5+
<groupId>dev.metaschema-framework</groupId>
6+
<artifactId>parent</artifactId>
77
<version>1.0.0-M2-SNAPSHOT</version>
88
</parent>
99

metaschema-documentation-generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>gov.nist.secauto.metaschema</groupId>
5-
<artifactId>metaschema-framework</artifactId>
4+
<groupId>dev.metaschema-framework</groupId>
5+
<artifactId>parent</artifactId>
66
<version>1.0.0-SNAPSHOT</version>
77
</parent>
88
<artifactId>metaschema-documentation-generator</artifactId>

metaschema-freemarker-support/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
5-
<groupId>gov.nist.secauto.metaschema</groupId>
6-
<artifactId>metaschema-framework</artifactId>
5+
<groupId>dev.metaschema-framework</groupId>
6+
<artifactId>parent</artifactId>
77
<version>1.0.0-SNAPSHOT</version>
88
</parent>
99

metaschema-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<parent>
7-
<groupId>gov.nist.secauto.metaschema</groupId>
8-
<artifactId>metaschema-framework</artifactId>
7+
<groupId>dev.metaschema-framework</groupId>
8+
<artifactId>parent</artifactId>
99
<version>1.0.0-M2-SNAPSHOT</version>
1010
</parent>
1111

metaschema-testing/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
33
<parent>
4-
<groupId>gov.nist.secauto.metaschema</groupId>
5-
<artifactId>metaschema-framework</artifactId>
4+
<groupId>dev.metaschema-framework</groupId>
5+
<artifactId>parent</artifactId>
66
<version>1.0.0-M2-SNAPSHOT</version>
77
</parent>
88
<artifactId>metaschema-testing</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<artifactId>oss-parent</artifactId>
99
<version>28-SNAPSHOT</version>
1010
</parent>
11-
<groupId>gov.nist.secauto.metaschema</groupId>
12-
<artifactId>metaschema-framework</artifactId>
11+
<groupId>dev.metaschema-framework</groupId>
12+
<artifactId>parent</artifactId>
1313
<version>1.0.0-M2-SNAPSHOT</version>
1414
<packaging>pom</packaging>
1515
<name>Metaschema Framework Parent</name>

schemagen/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<parent>
5-
<groupId>gov.nist.secauto.metaschema</groupId>
6-
<artifactId>metaschema-framework</artifactId>
5+
<groupId>dev.metaschema-framework</groupId>
6+
<artifactId>parent</artifactId>
77
<version>1.0.0-M2-SNAPSHOT</version>
88
</parent>
99
<artifactId>metaschema-schema-generator</artifactId>

0 commit comments

Comments
 (0)