paas-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.flysium-io</groupId> <artifactId>paas-parent</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2018-2025 the original author or authors. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <relativePath/> <version>9</version> </parent> <groupId>com.github.flysium-io</groupId> <artifactId>paas-parent</artifactId> <version>1.0.0</version> <packaging>pom</packaging> <name>PaaS Parent</name> <description>Parent pom providing flysium and third party dependency and plugin management for applications built with maven </description> <prerequisites> <maven>3.2.1</maven> </prerequisites> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> <paas-flysium.bom.version>1.0.1</paas-flysium.bom.version> <paas-thirdparty.bom.version>1.0.1</paas-thirdparty.bom.version> <paas-test.bom.version>1.0.0</paas-test.bom.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.github.flysium-io</groupId> <artifactId>paas-flysium-bom</artifactId> <version>${paas-flysium.bom.version}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>com.github.flysium-io</groupId> <artifactId>paas-thirdparty-bom</artifactId> <version>${paas-thirdparty.bom.version}</version> <scope>import</scope> <type>pom</type> </dependency> <dependency> <groupId>com.github.flysium-io</groupId> <artifactId>paas-test-bom</artifactId> <version>${paas-test.bom.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce</id> <configuration> <fail>false</fail> <rules> <DependencyConvergence/> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>