stepcounter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>jp.igapyon.amateras.stepcounter</groupId> <artifactId>stepcounter</artifactId> <version>3.0.4.5</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- <groupId>jp.sf.amateras.stepcounter</groupId> --> <groupId>jp.igapyon.amateras.stepcounter</groupId> <artifactId>stepcounter</artifactId> <packaging>jar</packaging> <version>3.0.4.5</version> <name>StepCounter</name> <url>https://github.com/igapyon/stepcounter</url> <description>Amateras Stepcounter is a step counter supporting various programming languages. This distribution contains small change to support SF related extension.</description> <inceptionYear>2012</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <organization> <name>Project Amateras</name> <url>http://amateras.sourceforge.jp/</url> </organization> <developers> <developer> <id>takezoe</id> <name>Naoki Takezoe</name> <email>takezoe_at_gmail.com</email> <url>http://d.hatena.ne.jp/takezoe/</url> <timezone>+9</timezone> </developer> </developers> <contributors> <contributor> <name>Toshiki Iga</name> <email>igapyon@gmail.com</email> <url>http://www.igapyon.jp/</url> <roles> <role>developer</role> </roles> <timezone>-9</timezone> </contributor> </contributors> <!-- for sonatype release. --> <scm> <url>https://github.com/igapyon/stepcounter</url> <connection>scm:git:https://github.com/igapyon/stepcounter.git</connection> <developerConnection>scm:git:https://github.com/igapyon/stepcounter.git</developerConnection> <tag>HEAD</tag> </scm> <repositories> <repository> <id>amateras</id> <name>Project Amateras Maven2 Repository</name> <url>http://amateras.sourceforge.jp/mvn/</url> </repository> <repository> <id>maven.seasar.org</id> <name>The Seasar Foundation Maven2 Repository</name> <url>http://maven.seasar.org/maven2</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>java.net2</id> <url>http://download.java.net/maven/2</url> </pluginRepository> </pluginRepositories> <dependencies> <dependency> <groupId>org.swinglabs</groupId> <artifactId>swingx</artifactId> <version>1.6.1</version> </dependency> <!-- <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.2-FINAL</version> </dependency> --> <dependency> <groupId>com.googlecode.java-diff-utils</groupId> <artifactId>diffutils</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>org.dyno.visual.swing.layouts</groupId> <artifactId>grouplayout</artifactId> <version>1.0.0</version> </dependency> <!-- <dependency> <groupId>org.dyno.visual.swing</groupId> <artifactId>visual.swing.layouts</artifactId> <version>0.9.12.I20090527-2200</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.seasar.fisshplate</groupId> <artifactId>fisshplate</artifactId> <version>0.1.4</version> </dependency> --> <dependency> <groupId>net.sf.jxls</groupId> <artifactId>jxls-core</artifactId> <version>1.0.5</version> </dependency> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.8.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> </dependencies> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>3.0.0</version> </extension> </extensions> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <encoding>UTF-8</encoding> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>source-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Maven Repos 的には不要 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>attached</goal> </goals> </execution> </executions> </plugin> --> <!-- gpg --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!-- for sonatype --> <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> <reporting> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>2.2</version> <configuration> <inputEncoding>UTF-8</inputEncoding> <outputEncoding>UTF-8</outputEncoding> <locales>en</locales> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.8</version> <configuration> <encoding>UTF-8</encoding> <docencoding>UTF-8</docencoding> <locale>en</locale> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.7.2</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.jvnet.sorcerer</groupId> <artifactId>maven-sorcerer-plugin</artifactId> <version>0.8</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </reporting> <distributionManagement> <!-- for sonatype release. --> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>