1 Star 0 Fork 0

zhiming_817/bio-formats-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 7.39 KB
一键复制 编辑 原始数据 按行查看 历史
David Gault 提交于 2021-03-23 12:31 . Bump version to 6.7.0-SNAPSHOT
<?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>ome</groupId>
<artifactId>bio-formats-examples</artifactId>
<version>6.7.0-SNAPSHOT</version>
<name>Bio-Formats examples</name>
<description>Bio-Formats examples</description>
<url>https://docs.openmicroscopy.org/bio-formats/</url>
<inceptionYear>2006</inceptionYear>
<licenses>
<license>
<name>GNU General Public License v2+</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<formats-gpl.version>6.6.1</formats-gpl.version>
<logback.version>1.1.1</logback.version>
<!-- NB: Avoid platform encoding warning when copying resources. -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- NB: Specify formatting of the maven.build.timestamp property. -->
<maven.build.timestamp.format>d MMMMM yyyy</maven.build.timestamp.format>
<!-- NB: Override argLine property for extra maven-surefire-plugin args. -->
<argLine/>
</properties>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>formats-gpl</artifactId>
<version>${formats-gpl.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
</dependencies>
<build>
<!-- It is nice for "mvn" with no arguments to do something reasonable. -->
<defaultGoal>install</defaultGoal>
<resources>
<resource>
<directory>src/main/matlab</directory>
<includes>
<include>**/*.m</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<!-- Require the Java 8 platform. -->
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<!-- Create -sources.jar when building. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<!-- Build source artifact in addition to main artifact. -->
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>parse-version</id>
<goals>
<goal>parse-version</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
<configuration>
<mainClass>ExampleSuite</mainClass>
<arguments>
<argument>test.fake</argument>
</arguments>
<skip>${skipTests}</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<prerequisites>
<maven>3.0.5</maven>
</prerequisites>
<organization>
<name>Open Microscopy Environment</name>
<url>http://www.openmicroscopy.org/</url>
</organization>
<issueManagement>
<system>Trac</system>
<url>https://trac.openmicroscopy.org/ome</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://ci.openmicroscopy.org/</url>
</ciManagement>
<mailingLists>
<mailingList>
<name>OME-users</name>
<subscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users/</subscribe>
<unsubscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users/</unsubscribe>
<post>ome-users@lists.openmicroscopy.org.uk</post>
<archive>http://lists.openmicroscopy.org.uk/pipermail/ome-users/</archive>
</mailingList>
<mailingList>
<name>OME-devel</name>
<subscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-devel/</subscribe>
<unsubscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-devel/</unsubscribe>
<post>ome-devel@lists.openmicroscopy.org.uk</post>
<archive>http://lists.openmicroscopy.org.uk/pipermail/ome-devel/</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:git://github.com/ome/bio-formats-examples</connection>
<developerConnection>scm:git:git@github.com:ome/bio-formats-examples</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/ome/bio-formats-examples</url>
</scm>
<!-- NB: for parent project -->
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
</repository>
<repository>
<id>ome</id>
<name>OME Artifactory</name>
<url>https://artifacts.openmicroscopy.org/artifactory/maven/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Central Repository</name>
<url>https://repo.maven.apache.org/maven2</url>
<layout>default</layout>
</pluginRepository>
</pluginRepositories>
<distributionManagement>
<repository>
<id>ome.staging</id>
<name>OME Staging Repository</name>
<url>https://artifacts.openmicroscopy.org/artifactory/ome.staging</url>
</repository>
<snapshotRepository>
<id>ome.snapshots</id>
<name>OME Snapshots Repository</name>
<url>https://artifacts.openmicroscopy.org/artifactory/ome.snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/zhiming_817/bio-formats-examples.git
git@gitee.com:zhiming_817/bio-formats-examples.git
zhiming_817
bio-formats-examples
bio-formats-examples
master

搜索帮助