jdbcmysql-utility
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.cofares.ljug</groupId> <artifactId>jdbcmysql-utility</artifactId> <version>0.1-donotuse</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> <groupId>net.cofares.ljug</groupId> <artifactId>jdbcmysql-utility</artifactId> <version>0.1-donotuse</version> <packaging>jar</packaging> <name>Utilisatire JDBC par LJUG</name> <url>http://java.cofares.net</url> <organization> <name>Lebanese Java Users group</name> <url>http://ljug.cofares.net</url> </organization> <description>Utilitaire générique pour la gestion de requete et l'affichage de résulat avec JDBC. Do not use this version is just for testing deployemtn to central maven (and for my studnets at Cnam Liban) next versions will be best tested and completed</description> <licenses> <license> <name>GNU GENERAL PUBLIC LICENSE v3</name> <url>https://www.gnu.org/licenses/gpl-3.0.fr.html</url> <distribution> Copyright (C) 2017 Pascal Fares @ LJUG This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. </distribution> <comments> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR or FITNESS FOR A PARTICULAR PURPOSE. </comments> </license> </licenses> <developers> <developer> <id>pascalfares</id> <name>Pascal Fares</name> <email>pfares@cofares.net</email> <url>http://www.cofares.net</url> <organization>Open Source lebanese Movement</organization> <organizationUrl>http://oslm.cofares.net</organizationUrl> <roles> <role> LGUG chair </role> <role> commiter </role> </roles> <timezone>UTC+2</timezone> <properties> <otheremail>pascal.fares@cofares.net</otheremail> </properties> </developer> </developers> <contributors> <contributor> <name/> <email/> <url/> <organization/> <organizationUrl/> <roles/> <timezone/> <properties> <key>value</key> </properties> </contributor> </contributors> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.13</version> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <!-- <repository> <id>ljug-mvn-repo</id> <url>file:///home/pfares/mesgit/java-tutorials/mvn-repo</url> </repository> --> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:git:git://git@github.com:ljug/java-tutorials.git</connection> <developerConnection>scm:git:ssh://github.com:ljug/java-tutorials.gitt</developerConnection> <url>https://github.com/ljug/java-tutorials/tree/master/CasUtilisation</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>