| Group ID: |
org.jzenith |
| Artifact ID: |
jzenith-example-postgres-plugin |
| Version: |
0.1 |
| Last modified: |
23.10.2018 12:29 |
| Packaging: |
jar |
| Name: |
Example - PostgreSQL with Plugin |
|
|
| Size: |
10.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/org/jzenith/jzenith-example-postgres-plugin/0.1/jzenith-example-postgres-plugin-0.1.jar |
| POM: |
Show
hide
<?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>
<artifactId>example-pom</artifactId>
<groupId>org.jzenith</groupId>
<version>0.1</version>
</parent>
<groupId>org.jzenith</groupId>
<artifactId>jzenith-example-postgres-plugin</artifactId>
<version>0.1</version>
<name>Example - PostgreSQL with Plugin</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.jzenith</groupId>
<artifactId>jzenith-example-common</artifactId>
<version>0.1</version>
</dependency>
<dependency>
<groupId>org.jzenith</groupId>
<artifactId>jzenith-postgresql</artifactId>
<version>0.1</version>
</dependency>
<!-- Compile Time tools -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-annotations</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.jzenith</groupId>
<artifactId>jzenith-example-common</artifactId>
<version>0.1</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.11.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest-assured.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dbunit</groupId>
<artifactId>dbunit</artifactId>
<version>2.5.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>fat</shadedClassifierName>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>org.jzenith.example.PostgresPluginExampleApp</mainClass>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer">
</transformer>
</transformers>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${docker.maven.plugin.version}</version>
<configuration>
<images>
<image>
<alias>postgres</alias>
<name>postgres:10</name>
<run>
<wait>
<log>database system is ready to accept connections</log>
<time>20000</time>
</wait>
<ports>
<port>5433:5432</port>
</ports>
<env>
<POSTGRES_USER>test</POSTGRES_USER>
<POSTGRES_PASSWORD>test</POSTGRES_PASSWORD>
</env>
</run>
</image>
</images>
</configuration>
<executions>
<execution>
<id>start</id>
<phase>pre-integration-test</phase>
<goals>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>org.jzenith</groupId>
<artifactId>jzenith-example-postgres-plugin</artifactId>
<version>0.1</version>
</dependency>
|
| Gradle: |
org.jzenith:jzenith-example-postgres-plugin:0.1 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
assertj-core-3.11.1.jar
in org/assertj/assertj-core/3.11.1
-
[JAR]
dbunit-2.5.4.jar
in org/dbunit/dbunit/2.5.4
-
[JAR]
junit-jupiter-api-${junit.version}.jar
in org/junit/jupiter/junit-jupiter-api/${junit.version}
-
[JAR]
junit-jupiter-engine-${junit.version}.jar
in org/junit/jupiter/junit-jupiter-engine/${junit.version}
-
[JAR]
junit-jupiter-params-${junit.version}.jar
in org/junit/jupiter/junit-jupiter-params/${junit.version}
-
[JAR]
jzenith-example-common-0.1-tests.jar
in org/jzenith/jzenith-example-common/0.1
-
[JAR]
jzenith-example-common-0.1-tests.jar
in org/jzenith/jzenith-example-common/0.1
-
[JAR]
jzenith-postgresql-0.1.jar
in org/jzenith/jzenith-postgresql/0.1
-
[JAR]
lombok-1.16.10.jar
in org/projectlombok/lombok/1.16.10
-
[JAR]
rest-assured-${rest-assured.version}.jar
in io/rest-assured/rest-assured/${rest-assured.version}
-
[JAR]
spotbugs-annotations-3.1.1.jar
in com/github/spotbugs/spotbugs-annotations/3.1.1
|
| Dependency Graph: |
Show
Less
More
|