logan
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.davidmoten</groupId> <artifactId>logan</artifactId> <version>0.3.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>com.github.davidmoten</groupId> <artifactId>sonatype-parent</artifactId> <version>0.1</version> </parent> <artifactId>logan</artifactId> <version>0.3.3</version> <name>${project.artifactId}</name> <description>Log analysis</description> <packaging>war</packaging> <url>http://github.com/davidmoten/logan</url> <properties> <scm.url>scm:git:https://github.com/davidmoten/logan.git</scm.url> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <checkstyle.version>2.7</checkstyle.version> <findbugs.version>3.0.5</findbugs.version> <javadoc.version>3.0.1</javadoc.version> <pmd.version>3.11.0</pmd.version> <jdepend.version>2.0-beta-2</jdepend.version> <javancss.version>2.0</javancss.version> <project.info.version>2.4</project.info.version> <jxr.version>2.3</jxr.version> <taglist.version>2.4</taglist.version> <dashboard.version>1.0.0-beta-1</dashboard.version> <m3.site.version>3.7.1</m3.site.version> <changelog.version>2.2</changelog.version> <coverage.reports.dir>${project.build.directory}/target/coverage-reports</coverage.reports.dir> <maven.compiler.target>1.8</maven.compiler.target> <jetty.version>9.4.22.v20191022</jetty.version> <jetty.stop.port>9998</jetty.stop.port> <log.server.url>http://localhost:8080</log.server.url> <logan.config>/sample-configuration.xml</logan.config> <log.base>/var/logs</log.base> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <ciManagement> <system>Travis</system> <url>https://travis-ci.org/davidmoten/logan</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/davidmoten/logan/issues</url> </issueManagement> <inceptionYear>2013</inceptionYear> <developers> <developer> <id>dave</id> <name>Dave Moten</name> <url>https://github.com/davidmoten/</url> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+10</timezone> </developer> </developers> <scm> <connection>${scm.url}</connection> <developerConnection>${scm.url}</developerConnection> <url>${scm.url}</url> <tag>0.3.3</tag> </scm> <dependencies> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>bplustree</artifactId> <version>0.1.3</version> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>jsmaz</artifactId> <version>0.1</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>19.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.5</version> </dependency> <!-- required for CrossOriginFilter --> <!-- <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlets</artifactId> <version>${jetty.plugin.version}</version> <scope>provided</scope> </dependency> --> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.0.1</version> <scope>provided</scope> </dependency> <!-- required for DirectoryScanner --> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.9.7</version> <exclusions> <exclusion> <artifactId>ant-launcher</artifactId> <groupId>org.apache.ant</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.4.192</version> </dependency> <!-- Test Dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.davidmoten</groupId> <artifactId>kool</artifactId> <version>0.1.3</version> </dependency> </dependencies> <build> <finalName>${project.artifactId}-${project.version}-${git.commit.hash.short}</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${maven.compiler.target}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-runner</artifactId> <version>${jetty.version}</version> <type>jar</type> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/</outputDirectory> <destFileName>jetty-runner.jar</destFileName> </artifactItem> <artifactItem> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-start</artifactId> <version>${jetty.version}</version> <type>jar</type> <overWrite>false</overWrite> <outputDirectory>${project.build.directory}/</outputDirectory> <destFileName>start.jar</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/wars</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.davidmoten</groupId> <artifactId>git-properties-maven-plugin</artifactId> <version>0.1</version> <executions> <execution> <id>write-properties</id> <goals> <goal>properties</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/assembly/dist.xml</descriptor> </descriptors> <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> <id>create-archive</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <failOnError>false</failOnError> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>${jetty.version}</version> <configuration> <scanIntervalSeconds>10</scanIntervalSeconds> <stopKey>foo</stopKey> <stopPort>${jetty.stop.port}</stopPort> <webAppConfig> <contextPath>/</contextPath> </webAppConfig> <systemProperties> <systemProperty> <name>logan.config</name> <value>${logan.config}</value> </systemProperty> <systemProperty> <name>log.base</name> <value>${log.base}</value> </systemProperty> <systemProperty> <name>persist</name> <value>bplustree</value> </systemProperty> </systemProperties> </configuration> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>${m3.site.version}</version> <executions> <execution> <id>attach-descriptor</id> <goals> <goal>attach-descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. --> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId> com.google.code.maven-replacer-plugin </groupId> <artifactId> replacer </artifactId> <versionRange> [1.5.3,) </versionRange> <goals> <goal>replace</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> <pluginExecution> <pluginExecutionFilter> <groupId> com.github.davidmoten </groupId> <artifactId> git-properties-maven-plugin </artifactId> <versionRange> [0.1-SNAPSHOT,) </versionRange> <goals> <goal>properties</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <!-- this one should go first so that it is available to other plugins when they run --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>${jxr.version}</version> <configuration> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.version}</version> <configuration> <includeTestSourceDirectory>true</includeTestSourceDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>${pmd.version}</version> <configuration> <targetJdk>${maven.compiler.target}</targetJdk> <aggregate>true</aggregate> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>${findbugs.version}</version> <configuration> <xmlOutput>true</xmlOutput> <effort>Max</effort> <!--<excludeFilterFile>findbugs-exclude-filter-amsa.xml</excludeFilterFile> --> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jdepend-maven-plugin</artifactId> <version>${jdepend.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>${taglist.version}</version> </plugin> </plugins> </reporting> </project>