cooper
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.heuermh.cooper</groupId> <artifactId>cooper</artifactId> <version>0.5</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> <packaging>jar</packaging> <parent> <groupId>org.dishevelled</groupId> <artifactId>dsh-parent</artifactId> <version>48</version> </parent> <groupId>com.github.heuermh.cooper</groupId> <artifactId>cooper</artifactId> <name>cooper</name> <version>0.5</version> <description>Cooper.</description> <licenses> <license> <name>Apache License</name> <url>https://raw.githubusercontent.com/heuermh/cooper/main/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:heuermh/cooper.git</connection> <developerConnection>scm:git:git@github.com:heuermh/cooper.git</developerConnection> <url>git@github.com:heuermh/cooper.git</url> <tag>cooper-0.5</tag> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/heuermh/cooper/issues</url> </issueManagement> <properties> <awssdk.version>2.30.33</awssdk.version> <jdk.version>11</jdk.version> <maven.enforcer.maven-version>[3.6.3,)</maven.enforcer.maven-version> <maven.enforcer.jdk-version>[11,)</maven.enforcer.jdk-version> <picocli.version>4.7.6</picocli.version> <slf4j.version>1.7.36</slf4j.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>${picocli.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>bom</artifactId> <version>${awssdk.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>s3</artifactId> <!-- scope? --> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <executions> <execution> <id>filter-src</id> <goals> <goal>filter-sources</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> </plugin> <!-- note: order matters here, since all use package execution --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <configuration> <repositoryLayout>flat</repositoryLayout> <repositoryName>lib</repositoryName> <programs> <program> <id>coop</id> <mainClass>com.github.heuermh.cooper.Cooper</mainClass> </program> </programs> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>assemble</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> <tarLongFileMode>posix</tarLongFileMode> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>timestamp-property</id> <goals> <goal>timestamp-property</goal> </goals> <configuration> <name>build-helper-maven-plugin.build.timestamp</name> <pattern>yyyy-MM-dd</pattern> <locale>en_US</locale> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>