spring-test-terasoluna-gfw
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.yoshikawaa.gfw</groupId> <artifactId>spring-test-terasoluna-gfw</artifactId> <version>1.1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2017 Atsushi Yoshikawa (https://yoshikawaa.github.io) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>io.github.yoshikawaa.gfw</groupId> <artifactId>spring-test-terasoluna-gfw</artifactId> <version>1.1.0</version> <packaging>jar</packaging> <name>Testing Library for TERASOLUNA Server Framework for Java (5.x) with Spring TestContext Framework</name> <description>Testing Library for TERASOLUNA Server Framework for Java (5.x) with Spring TestContext Framework</description> <url>https://yoshikawaa.github.io</url> <inceptionYear>2017</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>manual</distribution> </license> </licenses> <organization> <name>Atsushi Yoshikawa</name> <url>https://yoshikawaa.github.io</url> </organization> <developers> <developer> <name>Atsushi Yoshikawa</name> <url>https://yoshikawaa.github.io</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:yoshikawaa/spring-test-terasoluna-gfw.git</connection> <developerConnection>scm:git:git@github.com:yoshikawaa/spring-test-terasoluna-gfw.git</developerConnection> <url>git@github.com:yoshikawaa/spring-test-terasoluna-gfw.git</url> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Sonatype Nexus Releases</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <dependencyManagement> <dependencies> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-parent</artifactId> <version>${terasoluna-gfw.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- == JUnit == --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <optional>true</optional> </dependency> <!-- == Spring Test == --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- == TELASOLUNA GFW == --> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-web</artifactId> </dependency> <!-- == For Test == --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-common-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-jodatime-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-security-core-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-recommended-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-web-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-web-jsp-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-security-web-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>org.terasoluna.gfw</groupId> <artifactId>terasoluna-gfw-recommended-web-dependencies</artifactId> <type>pom</type> <scope>test</scope> </dependency> <dependency> <groupId>io.github.yoshikawaa.gfw</groupId> <artifactId>spring-test-terasoluna-gfw-context</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>.</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE.txt</include> <include>NOTICE.txt</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0</version> <configuration> <argLine>${jacocoArgs}</argLine> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.10</version> <executions> <execution> <id>prepare-agent</id> <phase>test-compile</phase> <goals> <goal>prepare-agent</goal> </goals> <configuration> <propertyName>jacocoArgs</propertyName> <includes> <include>*</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.2</version> <configuration> <mapping> <xml>XML_STYLE</xml> <java>JAVADOC_STYLE</java> </mapping> <licenseSets> <licenseSet> <header>NOTICE.txt</header> <includes> <include>pom.xml</include> <include>src/main/java/**</include> </includes> </licenseSet> </licenseSets> </configuration> <executions> <execution> <phase>prepare-package</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <show>protected</show> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> <properties> <java.version>17</java.version> <encoding>UTF-8</encoding> <maven.compiler.target>${java.version}</maven.compiler.target> <maven.compiler.source>${java.version}</maven.compiler.source> <project.build.sourceEncoding>${encoding}</project.build.sourceEncoding> <project.reporting.outputEncoding>${encoding}</project.reporting.outputEncoding> <gpg.skip>true</gpg.skip> <terasoluna-gfw.version>5.8.1.RELEASE</terasoluna-gfw.version> </properties> </project>