liftwizard
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.liftwizard</groupId> <artifactId>liftwizard</artifactId> <version>0.13.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2020 Craig Motlin ~ ~ 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="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> <groupId>io.liftwizard</groupId> <artifactId>liftwizard-parent-build</artifactId> <version>0.13.0</version> <relativePath>liftwizard-maven-build/liftwizard-parent-build</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>liftwizard</artifactId> <packaging>pom</packaging> <name>Liftwizard (Root Module Group)</name> <modules> <module>docs</module> <module>liftwizard-application</module> <module>liftwizard-auth</module> <module>liftwizard-bundle</module> <module>liftwizard-clock</module> <module>liftwizard-config</module> <module>liftwizard-example</module> <module>liftwizard-generator-plugins</module> <module>liftwizard-graphql</module> <module>liftwizard-jackson</module> <module>liftwizard-logging</module> <module>liftwizard-maven-build</module> <module>liftwizard-reladomo</module> <module>liftwizard-servlet</module> <module>liftwizard-utility</module> <module>liftwizard-uuid</module> </modules> <properties> <maven.compiler.release>11</maven.compiler.release> <maven.compiler.parameters>true</maven.compiler.parameters> <checkstyle.configuration>${maven.multiModuleProjectDirectory}/checkstyle-configuration.xml</checkstyle.configuration> <checkstyle.suppressions>${maven.multiModuleProjectDirectory}/checkstyle-suppressions.xml</checkstyle.suppressions> <checkstyle.cache>${project.build.directory}/checkstyle-cache</checkstyle.cache> </properties> <description>Liftwizard is a collection of bundles and add-ons for Dropwizard, the Java framework for writing web services.</description> <url>https://github.com/motlin/liftwizard</url> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/motlin/liftwizard/issues</url> </issueManagement> <ciManagement> <system>CircleCI</system> <url>https://app.circleci.com/pipelines/github/motlin/liftwizard</url> </ciManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/motlin/liftwizard</url> <connection>scm:git:https://github.com/motlin/liftwizard.git</connection> <developerConnection>scm:git:https@github.com:motlin/liftwizard.git</developerConnection> <tag>0.13.0</tag> </scm> <inceptionYear>2020</inceptionYear> <developers> <developer> <name>Craig Motlin</name> <email>cmotlin@gmail.com</email> <url>https://github.com/motlin</url> <id>motlin</id> </developer> </developers> <build> <defaultGoal>clean install</defaultGoal> <pluginManagement> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>analyze</id> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>true</failOnWarning> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency>com.google.auto.service:auto-service</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>io.liftwizard:liftwizard-logging-buffered-appender</ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency>org.eclipse.collections:eclipse-collections</ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>enforcer-strict</id> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M3</version> <executions> <execution> <id>enforce</id> <configuration> <rules> <DependencyConvergence /> <requireJavaVersion> <version>1.8.0</version> </requireJavaVersion> <requireMavenVersion> <version>3.1.0</version> </requireMavenVersion> <requirePluginVersions> <unCheckedPluginList> io.liftwizard:liftwizard-generator-reladomo-code-plugin, io.liftwizard:liftwizard-generator-reladomo-database-plugin, io.liftwizard:liftwizard-generator-xsd2bean-plugin </unCheckedPluginList> </requirePluginVersions> <bannedDependencies> <excludes> <exclude>commons-logging-api</exclude> <exclude>commons-logging</exclude> <exclude>org.apache.logging.log4j:log4j</exclude> <exclude>org.slf4j:slf4j-simple</exclude> <exclude>org.slf4j:slf4j-log4j12</exclude> <exclude>org.slf4j:slf4j-jdk14</exclude> <exclude>org.slf4j:nop</exclude> <exclude>org.slf4j:jcl</exclude> </excludes> </bannedDependencies> <banDuplicatePomDependencyVersions /> <!--<reactorModuleConvergence />--> <requireUpperBoundDeps> <excludes> <!--Deliberately downgraded reflections to get around error where it logs thousands of not found classes--> <exclude>org.reflections:reflections</exclude> </excludes> </requireUpperBoundDeps> </rules> </configuration> <goals> <goal>enforce</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>