kronos-releng-kyma-runtime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.codbex.kronos</groupId>
<artifactId>kronos-releng-kyma-runtime</artifactId>
<version>0.1.2</version>
</dependency><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>com.codbex.kronos</groupId>
<artifactId>kronos-releng-parent</artifactId>
<version>0.1.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Kronos - Releng - Kyma</name>
<artifactId>kronos-releng-kyma-runtime</artifactId>
<version>0.1.2</version>
<packaging>war</packaging>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.2</version>
<configuration>
<failOnMissingWebXml>true</failOnMissingWebXml>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
<warName>ROOT</warName>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<!-- XS Classic -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>kronos-modules-all</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>com.codbex.kronos</groupId>
<artifactId>kronos-modules-ide-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Platform -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- Kyma - Base -->
<dependency>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-sap-kyma-base</artifactId>
<version>${dirigible.version}</version>
<exclusions>
<!-- Temporary disables the Wiki engine-->
<exclusion>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-engine-wiki</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-ide</artifactId>
</exclusion>
<exclusion>
<groupId>org.eclipse.dirigible</groupId>
<artifactId>dirigible-ext-mongodb</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<properties>
<license.header.location>../../licensing-header.txt</license.header.location>
</properties>
</project>