tenant
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.onecampus</groupId>
<artifactId>tenant</artifactId>
<version>3.0.0</version>
</dependency><?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.onecampus</groupId>
<artifactId>tenant</artifactId>
<name>tenant</name>
<!-- Update the footer to match-->
<version>3.0.0</version>
<description>Tenant and Application Management</description>
<url>https://github.com/TransActComm/TAM.git</url>
<licenses>
<license>
<name>Copyright 2023 Indiana University Research and Technology Corporation</name>
<url>http://iurtc.iu.edu/</url>
</license>
</licenses>
<developers>
<developer>
<id>khalid</id>
<name>Khalid Ibrahim</name>
<email>khalid@transact.com</email>
<organization>rSmart</organization>
<organizationUrl>https://www.onecampus.com/</organizationUrl>
<roles>
<role>developer</role>
</roles>
<timezone>+7</timezone>
<properties>
<picUrl>https://avatars.githubusercontent.com/u/14830679</picUrl>
</properties>
</developer>
</developers>
<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<properties-plugin.version>2.0.1</properties-plugin.version>
<jgitflow-plugin.version>1.0-m5.1</jgitflow-plugin.version>
<lombok.version>1.18.28</lombok.version>
<jaxb.version>2.3.8</jaxb.version>
<javax.inject.version>1</javax.inject.version>
<jakarta.annotation-api.version>2.1.1</jakarta.annotation-api.version>
<javax.servlet-api.version>4.0.1</javax.servlet-api.version>
<spring-security.version>5.8.3</spring-security.version>
<spring-webflux.version>5.3.27</spring-webflux.version>
<jackson-databind.version>2.14.3</jackson-databind.version>
<junit.version>4.13.2</junit.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<version>${spring-webflux.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>${jakarta.annotation-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>${javax.inject.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${javax.servlet-api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${spring-security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring-security.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java.version}</release>
<encoding>${project.build.sourceEncoding}</encoding>
<fork>true</fork>
<compilerArgument>-XDignore.symbol.file</compilerArgument><!-- if need
to use more than one look into compilerArgs since maven 3.1 -->
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>external.atlassian.jgitflow</groupId>
<artifactId>jgitflow-maven-plugin</artifactId>
<version>${jgitflow-plugin.version}</version>
<configuration>
<defaultOriginUrl>${project.scm.url}</defaultOriginUrl>
<eol>lf</eol>
<pushHotfixes>true</pushHotfixes>
<pushFeatures>true</pushFeatures>
<pushReleases>true</pushReleases>
<releaseBranchVersionSuffix>RC</releaseBranchVersionSuffix>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>jgitflow-ci</id>
<build>
<plugins>
<plugin>
<groupId>org.kuali.maven.plugins</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>${properties-plugin.version}</version>
<executions>
<execution>
<id>read-jgitflow-properties</id>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<verbose>true</verbose>
<locations>
<location>/opt/j2ee/security/tam/ci/jgitflow.properties</location>
</locations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<source>8</source>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<scm>
<connection>scm:git:https://github.com/TransActComm/TAM.git</connection>
<developerConnection>scm:git:https://github.com/TransActComm/TAM.git</developerConnection>
<url>https://github.com/TransActComm/TAM.git</url>
<tag>HEAD</tag>
</scm>
</project>