wallium-db
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>fr.kumamushi</groupId>
<artifactId>wallium-db</artifactId>
<version>1.0.2</version>
</dependency><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"> <name>wallium</name> <modelVersion>4.0.0</modelVersion> <groupId>fr.kumamushi</groupId> <artifactId>wallium-db</artifactId> <version>1.0.2</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <description>Library for web application automated tests</description> <url>https://github.com/kumamushi-soft/wallium</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Bénédicte MANCIET</name> <email>contact@kumamushi.fr</email> <organization>Kumamushi</organization> <organizationUrl>http://www.kumamushi.fr</organizationUrl> </developer> <developer> <name>Julien CUFI</name> </developer> </developers> <scm> <connection>scm:git:git://github.com/kumamushi-soft/wallium.git</connection> <developerConnection> scm:git:ssh://github.com/kumamushi-soft/wallium.git</developerConnection> <url>http://github.com/kumamushi-soft/wallium/tree/main</url> </scm> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>11</source> <target>11</target> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.9.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>3.5.0</version> </dependency> <dependency> <groupId>fr.kumamushi</groupId> <artifactId>wallium-common</artifactId> <version>1.0.2</version> </dependency> </dependencies> </project>