Skip to content

Commit 0a47269

Browse files
author
Andreas Dann
committed
format and remove pgp keyinfo
1 parent f4eac62 commit 0a47269

File tree

1 file changed

+129
-134
lines changed

1 file changed

+129
-134
lines changed

soot-infoflow/pom.xml

Lines changed: 129 additions & 134 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4-
<modelVersion>4.0.0</modelVersion>
5-
<groupId>de.tud.sse</groupId>
6-
<artifactId>soot-infoflow</artifactId>
7-
<name>soot-infoflow</name>
8-
<version>2.7.1.1</version>
9-
<description>Soot extending data flow tracking components for Java</description>
10-
<packaging>jar</packaging>
11-
<url>https://github.com/secure-software-engineering/FlowDroid</url>
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>de.tud.sse</groupId>
6+
<artifactId>soot-infoflow</artifactId>
7+
<name>soot-infoflow</name>
8+
<version>2.7.1.1</version>
9+
<description>Soot extending data flow tracking components for Java</description>
10+
<packaging>jar</packaging>
11+
<url>https://github.com/secure-software-engineering/FlowDroid</url>
1212
<organization>
1313
<name>Fraunhofer SIT</name>
1414
<url>https://www.sit.fraunhofer.de/</url>
@@ -35,138 +35,137 @@
3535
</scm>
3636

3737

38-
39-
<properties>
40-
<maven.compiler.source>1.8</maven.compiler.source>
41-
<maven.compiler.target>1.8</maven.compiler.target>
42-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
43-
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
44-
<maven-nexus-staging-plugin.version>1.6.8</maven-nexus-staging-plugin.version>
38+
<properties>
39+
<maven.compiler.source>1.8</maven.compiler.source>
40+
<maven.compiler.target>1.8</maven.compiler.target>
41+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42+
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
43+
<maven-nexus-staging-plugin.version>1.6.8</maven-nexus-staging-plugin.version>
4544
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
4645
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
4746
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
4847
<maven-surefire-plugin.version>2.20.1</maven-surefire-plugin.version>
4948
<maven-assembly-plugin.version>3.1.0</maven-assembly-plugin.version>
50-
</properties>
51-
52-
<build>
53-
<finalName>soot-infoflow-classes</finalName>
54-
<sourceDirectory>src</sourceDirectory>
55-
<testSourceDirectory>test</testSourceDirectory>
56-
<outputDirectory>build/classes</outputDirectory>
57-
<testOutputDirectory>build/testclasses</testOutputDirectory>
58-
<plugins>
59-
<plugin>
60-
<groupId>org.apache.maven.plugins</groupId>
61-
<artifactId>maven-compiler-plugin</artifactId>
62-
<version>3.2</version>
63-
</plugin>
49+
</properties>
6450

65-
<plugin>
66-
<groupId>org.apache.maven.plugins</groupId>
67-
<artifactId>maven-surefire-plugin</artifactId>
68-
<version>${maven-surefire-plugin.version}</version>
69-
<configuration>
70-
<includes>
71-
<include>soot/jimple/infoflow/test/junit/**</include>
72-
</includes>
73-
</configuration>
74-
</plugin>
75-
<plugin>
51+
<build>
52+
<finalName>soot-infoflow-classes</finalName>
53+
<sourceDirectory>src</sourceDirectory>
54+
<testSourceDirectory>test</testSourceDirectory>
55+
<outputDirectory>build/classes</outputDirectory>
56+
<testOutputDirectory>build/testclasses</testOutputDirectory>
57+
<plugins>
58+
<plugin>
59+
<groupId>org.apache.maven.plugins</groupId>
60+
<artifactId>maven-compiler-plugin</artifactId>
61+
<version>3.2</version>
62+
</plugin>
63+
64+
<plugin>
65+
<groupId>org.apache.maven.plugins</groupId>
66+
<artifactId>maven-surefire-plugin</artifactId>
67+
<version>${maven-surefire-plugin.version}</version>
68+
<configuration>
69+
<includes>
70+
<include>soot/jimple/infoflow/test/junit/**</include>
71+
</includes>
72+
</configuration>
73+
</plugin>
74+
<plugin>
7675
<groupId>org.apache.maven.plugins</groupId>
7776
<artifactId>maven-assembly-plugin</artifactId>
7877
<version>${maven-assembly-plugin.version}</version>
7978
<configuration>
80-
<descriptorRefs>
81-
<descriptorRef>jar-with-dependencies</descriptorRef>
82-
</descriptorRefs>
83-
<finalName>soot-infoflow-trunk</finalName>
84-
<appendAssemblyId>false</appendAssemblyId>
85-
</configuration>
86-
</plugin>
87-
<plugin>
88-
<groupId>org.apache.maven.plugins</groupId>
89-
<artifactId>maven-jar-plugin</artifactId>
90-
<version>${maven-jar-plugin.version}</version>
91-
<executions>
92-
<execution>
93-
<goals>
94-
<goal>test-jar</goal>
95-
</goals>
96-
</execution>
97-
</executions>
98-
</plugin>
99-
<plugin>
100-
<groupId>org.apache.maven.plugins</groupId>
101-
<artifactId>maven-source-plugin</artifactId>
102-
<version>${maven-source-plugin.version}</version>
103-
</plugin>
104-
<plugin>
105-
<groupId>org.apache.maven.plugins</groupId>
106-
<artifactId>maven-javadoc-plugin</artifactId>
107-
<version>${maven-javadoc-plugin.version}</version>
108-
<configuration>
109-
<failOnError>false</failOnError>
110-
</configuration>
111-
</plugin>
112-
</plugins>
113-
114-
<resources>
115-
<resource>
116-
<directory>.</directory>
117-
<includes>
118-
<include>EasyTaintWrapperSource.txt</include>
119-
</includes>
120-
</resource>
121-
</resources>
122-
</build>
79+
<descriptorRefs>
80+
<descriptorRef>jar-with-dependencies</descriptorRef>
81+
</descriptorRefs>
82+
<finalName>soot-infoflow-trunk</finalName>
83+
<appendAssemblyId>false</appendAssemblyId>
84+
</configuration>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.apache.maven.plugins</groupId>
88+
<artifactId>maven-jar-plugin</artifactId>
89+
<version>${maven-jar-plugin.version}</version>
90+
<executions>
91+
<execution>
92+
<goals>
93+
<goal>test-jar</goal>
94+
</goals>
95+
</execution>
96+
</executions>
97+
</plugin>
98+
<plugin>
99+
<groupId>org.apache.maven.plugins</groupId>
100+
<artifactId>maven-source-plugin</artifactId>
101+
<version>${maven-source-plugin.version}</version>
102+
</plugin>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-javadoc-plugin</artifactId>
106+
<version>${maven-javadoc-plugin.version}</version>
107+
<configuration>
108+
<failOnError>false</failOnError>
109+
</configuration>
110+
</plugin>
111+
</plugins>
112+
113+
<resources>
114+
<resource>
115+
<directory>.</directory>
116+
<includes>
117+
<include>EasyTaintWrapperSource.txt</include>
118+
</includes>
119+
</resource>
120+
</resources>
121+
</build>
123122

124-
<dependencies>
125-
<dependency>
126-
<groupId>de.upb.cs.swt</groupId>
127-
<artifactId>heros</artifactId>
128-
<version>1.1.0</version>
129-
</dependency>
130-
<dependency>
131-
<groupId>ca.mcgill.sable</groupId>
132-
<artifactId>jasmin</artifactId>
133-
<version>3.0.1</version>
134-
</dependency>
135-
<dependency>
136-
<groupId>ca.mcgill.sable</groupId>
137-
<artifactId>soot</artifactId>
138-
<version>3.2.0</version>
139-
</dependency>
140-
<dependency>
141-
<groupId>junit</groupId>
142-
<artifactId>junit</artifactId>
143-
<version>4.12</version>
144-
<scope>test</scope>
145-
</dependency>
146-
<dependency>
147-
<groupId>org.hamcrest</groupId>
148-
<artifactId>hamcrest-core</artifactId>
149-
<version>1.3</version>
150-
<scope>test</scope>
151-
</dependency>
152-
<dependency>
153-
<groupId>javax.servlet</groupId>
154-
<artifactId>javax.servlet-api</artifactId>
155-
<version>3.0.1</version>
156-
<scope>test</scope>
157-
</dependency>
123+
<dependencies>
124+
<dependency>
125+
<groupId>de.upb.cs.swt</groupId>
126+
<artifactId>heros</artifactId>
127+
<version>1.1.0</version>
128+
</dependency>
129+
<dependency>
130+
<groupId>ca.mcgill.sable</groupId>
131+
<artifactId>jasmin</artifactId>
132+
<version>3.0.1</version>
133+
</dependency>
134+
<dependency>
135+
<groupId>ca.mcgill.sable</groupId>
136+
<artifactId>soot</artifactId>
137+
<version>3.2.0</version>
138+
</dependency>
139+
<dependency>
140+
<groupId>junit</groupId>
141+
<artifactId>junit</artifactId>
142+
<version>4.12</version>
143+
<scope>test</scope>
144+
</dependency>
145+
<dependency>
146+
<groupId>org.hamcrest</groupId>
147+
<artifactId>hamcrest-core</artifactId>
148+
<version>1.3</version>
149+
<scope>test</scope>
150+
</dependency>
151+
<dependency>
152+
<groupId>javax.servlet</groupId>
153+
<artifactId>javax.servlet-api</artifactId>
154+
<version>3.0.1</version>
155+
<scope>test</scope>
156+
</dependency>
158157

159-
<dependency>
160-
<groupId>net.sf.trove4j</groupId>
161-
<artifactId>trove4j</artifactId>
162-
<version>3.0.3</version>
163-
</dependency>
164-
<dependency>
165-
<groupId>com.google.guava</groupId>
166-
<artifactId>guava</artifactId>
167-
<version>25.1-jre</version>
168-
</dependency>
169-
</dependencies>
158+
<dependency>
159+
<groupId>net.sf.trove4j</groupId>
160+
<artifactId>trove4j</artifactId>
161+
<version>3.0.3</version>
162+
</dependency>
163+
<dependency>
164+
<groupId>com.google.guava</groupId>
165+
<artifactId>guava</artifactId>
166+
<version>25.1-jre</version>
167+
</dependency>
168+
</dependencies>
170169

171170

172171
<distributionManagement>
@@ -176,7 +175,7 @@
176175
</snapshotRepository>
177176
</distributionManagement>
178177

179-
<profiles>
178+
<profiles>
180179
<profile>
181180
<id>deploy</id>
182181
<activation>
@@ -185,10 +184,6 @@
185184
<value>true</value>
186185
</property>
187186
</activation>
188-
<properties>
189-
<gpg.executable>gpg2</gpg.executable>
190-
<gpg.keyname>BA6398DCF4E2C1B6C5C7BDFC364F80C21BCC61BB</gpg.keyname>
191-
</properties>
192187
<build>
193188
<plugins>
194189
<plugin>

0 commit comments

Comments
 (0)