| 组织ID: |
ru.yandex.qatools.embed |
| 项目ID: |
postgresql-embedded |
| 版本: |
1.3 |
| 最后修改时间: |
2019-10-29 15:24:49 |
| 包类型: |
jar |
| 标题: |
Embedded PostgreSQL (based on Flapdoodle-OSS embedded services) |
| 描述: |
An embedded PostgreSQL... |
| 相关URL: |
http://company.yandex.com |
| 大小: |
46.69KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>ru.yandex.qatools.embed</groupId>
<artifactId>postgresql-embedded</artifactId>
<version>1.3</version>
</dependency>
|
| Gradle引入代码: |
ru.yandex.qatools.embed:postgresql-embedded:1.3
|
| 下载Jar包: |
|
| POM文件内容: |
<?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/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>ru.yandex.qatools.embed</groupId>
<artifactId>postgresql-embedded</artifactId>
<version>1.3</version>
<name>Embedded PostgreSQL (based on Flapdoodle-OSS embedded services)</name>
<description>An embedded PostgreSQL...</description>
<organization>
<name>Yandex</name>
<url>http://company.yandex.com</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/yandex-qatools/postgresql-embedded/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:yandex-qatools/postgresql-embedded.git</connection>
<developerConnection>scm:git:git@github.com:yandex-qatools/postgresql-embedded.git</developerConnection>
<url>git@github.com:yandex-qatools/postgresql-embedded.git</url>
<tag>postgresql-embedded-1.3</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<goals>deploy -DskipTests=true</goals>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-api</artifactId>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.flapdoodle.embed</groupId>
<artifactId>de.flapdoodle.embed.process</artifactId>
<version>1.41.2</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.3-1100-jdbc41</version>
<scope>test</scope>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.kubek2k</groupId>
<artifactId>springockito</artifactId>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<mockito.version>1.10.19</mockito.version>
<junit.version>4.11</junit.version>
<hamcrest.version>1.3</hamcrest.version>
<spring.version>3.2.5.RELEASE</spring.version>
</properties>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
ru.yandex.qatools.embed.postgresql.PgCtlProcess.class
ru.yandex.qatools.embed.postgresql.AbstractPGExecutable.class
ru.yandex.qatools.embed.postgresql.CreateDbExecutable.class
ru.yandex.qatools.embed.postgresql.config.SupportConfig.class
ru.yandex.qatools.embed.postgresql.config.PostgresConfig.class
ru.yandex.qatools.embed.postgresql.config.AbstractPostgresConfig.class
ru.yandex.qatools.embed.postgresql.config.AbstractPostgresConfig$Net.class
ru.yandex.qatools.embed.postgresql.config.AbstractPostgresConfig$Timeout.class
ru.yandex.qatools.embed.postgresql.config.RuntimeConfigBuilder.class
ru.yandex.qatools.embed.postgresql.config.AbstractPostgresConfig$Storage.class
ru.yandex.qatools.embed.postgresql.config.DownloadConfigBuilder.class
ru.yandex.qatools.embed.postgresql.config.AbstractPostgresConfig$Credentials.class
ru.yandex.qatools.embed.postgresql.CreateDbProcess.class
ru.yandex.qatools.embed.postgresql.PsqlProcess.class
ru.yandex.qatools.embed.postgresql.InitDbProcess.class
ru.yandex.qatools.embed.postgresql.InitDbExecutable.class
ru.yandex.qatools.embed.postgresql.Command.class
ru.yandex.qatools.embed.postgresql.PostgresExecutable.class
ru.yandex.qatools.embed.postgresql.CreateuserExecutable.class
ru.yandex.qatools.embed.postgresql.PgCtlExecutable.class
ru.yandex.qatools.embed.postgresql.PostgresStarter.class
ru.yandex.qatools.embed.postgresql.ext.PostgresArtifactStore.class
ru.yandex.qatools.embed.postgresql.ext.PostgresFilesToExtract.class
ru.yandex.qatools.embed.postgresql.ext.ArtifactStoreBuilder.class
ru.yandex.qatools.embed.postgresql.ext.PostgresFilesToExtract$1.class
ru.yandex.qatools.embed.postgresql.ext.SubdirTempDir.class
ru.yandex.qatools.embed.postgresql.PostgresProcess.class
ru.yandex.qatools.embed.postgresql.PsqlExecutable.class
ru.yandex.qatools.embed.postgresql.distribution.Version.class
ru.yandex.qatools.embed.postgresql.distribution.Version$Main.class
ru.yandex.qatools.embed.postgresql.PackagePaths$1.class
ru.yandex.qatools.embed.postgresql.CreateuserProcess.class
ru.yandex.qatools.embed.postgresql.PackagePaths.class
ru.yandex.qatools.embed.postgresql.AbstractPGProcess.class
META-INF/maven/ru.yandex.qatools.embed/postgresql-embedded/pom.xml
META-INF/maven/ru.yandex.qatools.embed/postgresql-embedded/pom.properties
|
| 依赖Jar: |
maven-scm-api-1.9.1.jar
/org.apache.maven.scm/maven-scm-api/1.9.1
查看maven-scm-api所有版本文件
maven-scm-provider-gitexe-1.9.1.jar
/org.apache.maven.scm/maven-scm-provider-gitexe/1.9.1
查看maven-scm-provider-gitexe所有版本文件
|