Skip to content

Commit

Permalink
project organisation
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Jun 5, 2023
1 parent 53a956c commit 3e3576c
Show file tree
Hide file tree
Showing 5 changed files with 107 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Imixs Security

This is an side project form Imixs-Workflow providing different security solutions and libraries to be used to protect enterprise applications.
Imixs-Security is a side project form Imixs-Workflow providing different security solutions and libraries to be used to protect enterprise applications.
Most libraries are based on Jakarta EE but some of them can also be used standalone in a Java SE application. This project is licensed unter the Eclipse Public License if not mentioned otherwise. You are invited to join the project. If you have questions just open a new issue.

## Imixs-JWT
Expand Down
7 changes: 5 additions & 2 deletions imixs-jwt/pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<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">
<parent>
<artifactId>imixs-security</artifactId>
<groupId>org.imixs.security</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.imixs.jwt</groupId>
<artifactId>imixs-jwt</artifactId>
<name>Imixs-JWT</name>
<version>2.0.0-SNAPSHOT</version>


<description>
Expand Down
6 changes: 6 additions & 0 deletions imixs-oidc-payara5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,3 +198,9 @@ After you have configured the library and deployed your application you can requ
https://localhost:8181/api/oidc/debug

This information can be helpful to analyze tokens and Claims returned by the OpenID provider.

# Build from Sources

To build the library form sources you can run the maven command:

$ mvn clean install
7 changes: 5 additions & 2 deletions imixs-oidc-payara5/pom.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
<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">
<parent>
<artifactId>imixs-security</artifactId>
<groupId>org.imixs.security</groupId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.imixs.security</groupId>
<artifactId>imixs-oidc-payara5</artifactId>
<name>Imixs-OIDC Payara5</name>
<version>1.0.0-SNAPSHOT</version>


<description>
Expand Down
90 changes: 90 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<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>
<groupId>org.imixs.security</groupId>
<artifactId>imixs-security</artifactId>
<name>Imixs Security</name>
<packaging>pom</packaging>
<version>2.0.0-SNAPSHOT</version>

<modules>
<module>imixs-jwt</module>
<module>imixs-oidc-payara5</module>
</modules>



<description>
Imixs-Security is a side project form Imixs-Workflow providing different security solutions and libraries to be used to protect enterprise applications.
</description>

<url>https://github.com/imixs/imixs-security</url>
<organization>
<name>Imixs Software Solutions GmbH</name>
<url>http://www.imixs.com</url>
</organization>
<inceptionYear>2023</inceptionYear>

<developers>
<developer>
<id>rsoika</id>
<name>Ralph Soika</name>
<email>[email protected]</email>
<url>http://blog.imixs.org/</url>
<organization>Imixs Software Solutions GmbH</organization>
<organizationUrl>http://www.imixs.com</organizationUrl>
<roles>
<role>developer</role>
<role>testing</role>
</roles>
<timezone>2</timezone>
</developer>

</developers>

<scm>
<connection>scm:git:[email protected]:imixs/imixs-security.git</connection>
<developerConnection>scm:git:[email protected]:imixs/imixs-security.git</developerConnection>
<url>https://github.com/imixs/imixs-security/</url>
<tag>HEAD</tag>
</scm>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/imixs/imixs-security/issues</url>
</issueManagement>

<mailingLists>
<!-- no mailing lists supported -->
</mailingLists>

<licenses>
<license>
<name>Eclipse Public License - v 2.0</name>
<url>https://www.eclipse.org/legal/epl-2.0/</url>
<distribution>repo</distribution>
<comments>All the results of thi project are subject to the Eclipse Public License - v 2.0 licensing model. </comments>
</license>
</licenses>

<build>

</build>

<reporting>

</reporting>


<!-- Distributen Management oss.sonatype.org -->
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

</project>

0 comments on commit 3e3576c

Please sign in to comment.