summaryrefslogtreecommitdiffstats
tag namev4.7.4.201809180905-r (46e32f4fac41456a42bb2ab7551138c79982977e)
tag date2018-09-18 15:05:12 +0200
tagged byMatthias Sohn <matthias.sohn@sap.com>
tagged objectcommit 6d4864ff15...
downloadjgit-4.7.4.201809180905-r.tar.gz
jgit-4.7.4.201809180905-r.zip
JGit v4.7.4.201809180905-r
-----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iIwEABEIADQWIQR8ZpgQiSy9MUj6kplbBczeFAwodgUCW6D4CBYcbWF0dGhpYXMu c29obkBzYXAuY29tAAoJEFsFzN4UDCh2qHcA/A9z+RiXJHMiDTkLV8dx9KfXKG3E NJWs/tGvCsse7lcYAP9utsJTk2nb+SBH3G7Haj3Ip8IN9SwwEGvpN6dbdw4j2Q== =ecS1 -----END PGP SIGNATURE-----
>17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
<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>

	<parent>
		<groupId>org.aspectj</groupId>
		<artifactId>aspectj-parent</artifactId>
		<version>1.9.23-SNAPSHOT</version>
	</parent>

	<artifactId>tests</artifactId>

	<dependencies>

		<dependency>
			<!-- All modules referencing files inside 'lib' need this dependency -->
			<groupId>org.aspectj</groupId>
			<artifactId>lib</artifactId>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>util</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>bridge</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>ajde.core</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>asm</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.ow2.asm</groupId>
			<artifactId>asm</artifactId>
		</dependency>
		<dependency>
			<groupId>org.ow2.asm</groupId>
			<artifactId>asm-commons</artifactId>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>weaver</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>org.aspectj.matcher</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>org.aspectj.ajdt.core</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>org.aspectj.ajdt.core</artifactId>
			<version>${project.version}</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>ajde.core</artifactId>
			<version>${project.version}</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>bcel-builder</artifactId>
			<version>${project.version}</version>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>testing</artifactId>
			<version>${project.version}</version>
			<type>test-jar</type>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.aspectj</groupId>
			<artifactId>testing-util</artifactId>
			<version>${project.version}</version>
			<scope>test</scope>
		</dependency>
		<!--
			Used for tests setting system properties, e.g. for AJC, when we need to avoid polluting the global
			system properties namespace with settings potentially influencing other tests.
			See https://github.com/bmuskalla/scoped-system-properties.
		-->
		<dependency>
			<groupId>io.github.bmuskalla</groupId>
			<artifactId>scoped-system-properties</artifactId>
			<version>1.1.0</version>
			<scope>test</scope>
		</dependency>

		<!--
			The tests need these during runtime, even though no direct usage is in our classes.
			See also 'usedDependencies' in maven-dependency-plugin configuration.
		-->
		<dependency>
			<groupId>ant</groupId>
			<artifactId>ant-launcher</artifactId>
			<version>${lib.ant.version}</version>
			<scope>test</scope>
		</dependency>

	</dependencies>

	<build>
			<plugins>
				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-surefire-plugin</artifactId>
					<configuration combine.self="override">
						<testFailureIgnore>false</testFailureIgnore>
						<argLine>
							${jvm.arg.addOpens}
							${jvm.arg.allowSecurityManager}
						</argLine>
						<includes>
							<include>**/TestsModuleTests*</include>
						</includes>
					</configuration>
				</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-dependency-plugin</artifactId>
				<configuration>
					<usedDependencies>
						<!-- The tests need these during runtime, even though no direct usage is in our classes -->
						<usedDependency>ant:ant-launcher</usedDependency>
					</usedDependencies>
				</configuration>
			</plugin>
			</plugins>
	</build>

</project>