-
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
b887aa1
commit 3292858
Showing
2 changed files
with
72 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,39 @@ | |
<version>0.30.5</version> | ||
<packaging>pom</packaging> | ||
<name>CYBNITY Official Standard Techstack</name> | ||
<description>Technology stack of CYBNITY defense platform solution</description> | ||
<url>https://github.com/cybnity/foundation-techstack</url> | ||
|
||
<!-- Required informations for Maven Central Repository publishing --> | ||
<description>Technology stack of CYBNITY defense platform solution</description> | ||
<url>https://github.com/cybnity/foundation-techstack/demonstrators-line/demonstrator-v0</url> | ||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<id>o.lemee</id> | ||
<name>Olivier Lemee</name> | ||
<email>[email protected]</email> | ||
<organization>CYBNITY</organization> | ||
<organizationUrl>http://www.cybnity.org</organizationUrl> | ||
<timezone>FR</timezone> | ||
<roles> | ||
<role>CYBNITY Founder</role> | ||
<role>Product Leader</role> | ||
<role>Product Designer</role> | ||
<role>Software Designer</role> | ||
<role>Software Developer</role> | ||
<role>Software Reviewer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:git://github.com/cybnity/foundation-techstack.git</connection> | ||
<developerConnection>scm:git:https://github.com:cybnity/foundation-techstack.git</developerConnection> | ||
<url>http://github.com/cybnity/foundation-techstack/tree/main</url> | ||
</scm> | ||
|
||
<properties> | ||
<!-- JAVA TOOLING --> | ||
|
@@ -53,26 +77,29 @@ | |
<url>http://www.cybnity.org</url> | ||
</organization> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/cybnity/foundation-techstack.git</connection> | ||
<developerConnection>scm:git:https://github.com:cybnity/foundation-techstack.git</developerConnection> | ||
<url>http://github.com/cybnity/foundation-techstack/tree/main</url> | ||
</scm> | ||
|
||
<distributionManagement> | ||
<snapshotRepository> | ||
<!-- AGNet repository providing latest CYBNITY snapshots --> | ||
<id>agnet</id> | ||
<name>AG Net snapshots repository</name> | ||
<uniqueVersion>false</uniqueVersion> | ||
<url>https://nexus.agnet.fr/repository/cybnity-snapshots</url> | ||
</snapshotRepository> | ||
|
||
<repository> | ||
<!-- AGNet repository providing official CYBNITY releases --> | ||
<id>agnet</id> | ||
<name>AG Net releases repository</name> | ||
<uniqueVersion>true</uniqueVersion> | ||
<url>https://nexus.agnet.fr/repository/cybnity-releases</url> | ||
</repository> | ||
|
||
<repository> | ||
<!-- Sonatype official maven central repository providing CYBNITY releases --> | ||
<id>central</id> | ||
<name>Maven Central Repository</name> | ||
<uniqueVersion>true</uniqueVersion> | ||
<url>https://central.sonatype.com</url> | ||
</repository> | ||
</distributionManagement> | ||
|
||
<!-- Tech stack official dependency versions --> | ||
|
@@ -244,26 +271,6 @@ | |
</mailingList> | ||
</mailingLists> | ||
|
||
<!-- Contributors --> | ||
<developers> | ||
<developer> | ||
<id>o.lemee</id> | ||
<name>Olivier Lemee</name> | ||
<email>[email protected]</email> | ||
<organization>CYBNITY</organization> | ||
<organizationUrl>http://www.cybnity.org</organizationUrl> | ||
<timezone>FR</timezone> | ||
<roles> | ||
<role>CYBNITY Founder</role> | ||
<role>Product Leader</role> | ||
<role>Product Designer</role> | ||
<role>Software Designer</role> | ||
<role>Software Developer</role> | ||
<role>Software Reviewer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<!-- Build chain configuration --> | ||
<build> | ||
<directory>target</directory> | ||
|
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 |
---|---|---|
@@ -1,11 +1,47 @@ | ||
<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.cybnity</groupId> | ||
<artifactId>techstack-ref</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>org.cybnity.techstack.ref</groupId> | ||
<artifactId>demonstrators</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>CYBNITY techstack demonstrators line</name> | ||
|
||
<!-- Required informations for Maven Central Repository publishing --> | ||
<description>Technology demonstrators</description> | ||
<url>https://github.com/cybnity/foundation-techstack/demonstrators-line</url> | ||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | ||
</license> | ||
</licenses> | ||
<developers> | ||
<developer> | ||
<id>o.lemee</id> | ||
<name>Olivier Lemee</name> | ||
<email>[email protected]</email> | ||
<organization>AG Net</organization> | ||
<organizationUrl>http://corp.agnet.fr</organizationUrl> | ||
<timezone>FR</timezone> | ||
<roles> | ||
<role>Product Owner</role> | ||
<role>Software Architect</role> | ||
<role>Release Manager</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
<scm> | ||
<connection>scm:git:git://github.com/cybnity/foundation-techstack.git</connection> | ||
<developerConnection>scm:git:https://github.com:cybnity/foundation-techstack.git</developerConnection> | ||
<url>http://github.com/cybnity/foundation-techstack/tree/main</url> | ||
</scm> | ||
|
||
<modules> | ||
<!-- Rebuildable demonstrator implementing themselves their version name --> | ||
<module>demonstrator-v0</module> | ||
|