| 组织ID: |
net.sf.dbinit |
| 项目ID: |
dbinit |
| 版本: |
1.4.0 |
| 最后修改时间: |
2019-10-25 04:44:51 |
| 包类型: |
jar |
| 标题: |
DBInit |
| 描述: |
Database Initialisation Service |
| 相关URL: |
https://github.com/dcoraboeuf/dbinit |
| 大小: |
19.78KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>net.sf.dbinit</groupId>
<artifactId>dbinit</artifactId>
<version>1.4.0</version>
</dependency>
|
| Gradle引入代码: |
net.sf.dbinit:dbinit:1.4.0
|
| 下载Jar包: |
|
| POM文件内容: |
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.dbinit</groupId>
<artifactId>dbinit</artifactId>
<version>1.4.0</version>
<packaging>jar</packaging>
<name>DBInit</name>
<description>Database Initialisation Service</description>
<url>https://github.com/dcoraboeuf/dbinit</url>
<licenses>
<license>
<name>GNU Library or Lesser General Public License (LGPL)</name>
<url>http://www.gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Damien Coraboeuf</name>
<email>damien.coraboeuf AT gmail COM</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:dcoraboeuf/dbinit.git</connection>
<url>scm:git:git@github.com:dcoraboeuf/dbinit.git</url>
<developerConnection>scm:git:git@github.com:dcoraboeuf/dbinit.git</developerConnection>
<tag>HEAD</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<dependencies>
<!-- Commons -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
</dependency>
<!-- Log -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>
<!-- Test -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
<scope>test</scope>
</dependency>
<!-- H2 -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.2.142</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<links>
<link>
http://java.sun.com/javase/6/docs/api/
</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<!-- Sonatype configuration -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.4</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<!-- Generation of sources JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Generation of Javadoc JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
net.sf.dbinit.DBExecutor.class
net.sf.dbinit.DBInit$ShutdownTask.class
net.sf.dbinit.DBInit.class
net.sf.dbinit.DBInitAction.class
net.sf.dbinit.DBInitCannotGetResourceException.class
net.sf.dbinit.DBInitCannotReadResourceException.class
net.sf.dbinit.DBInitCannotSplitStatementsException.class
net.sf.dbinit.DBInitDriverNotFoundException.class
net.sf.dbinit.DBInitPatchException.class
net.sf.dbinit.DBInitScriptAction.class
net.sf.dbinit.DBInitSQLException.class
net.sf.dbinit.DBInitVersionException.class
net.sf.dbinit.DBPatchAction.class
net.sf.dbinit.DBSection.class
net.sf.dbinit.DBStatements.class
META-INF/maven/net.sf.dbinit/dbinit/pom.xml
META-INF/maven/net.sf.dbinit/dbinit/pom.properties
|
| 依赖Jar: |
commons-lang3-3.3.2.jar
/org.apache.commons/commons-lang3/3.3.2
查看commons-lang3所有版本文件
commons-io-1.4.jar
/commons-io/commons-io/1.4
查看commons-io所有版本文件
slf4j-api-1.6.1.jar
/org.slf4j/slf4j-api/1.6.1
查看slf4j-api所有版本文件
junit-4.8.1.jar
/junit/junit/4.8.1
查看junit所有版本文件
mockito-core-1.8.5.jar
/org.mockito/mockito-core/1.8.5
查看mockito-core所有版本文件
slf4j-log4j12-1.6.1.jar
/org.slf4j/slf4j-log4j12/1.6.1
查看slf4j-log4j12所有版本文件
log4j-1.2.13.jar
/log4j/log4j/1.2.13
查看log4j所有版本文件
h2-1.2.142.jar
/com.h2database/h2/1.2.142
查看h2所有版本文件
|