-
Notifications
You must be signed in to change notification settings - Fork 13
/
pom.xml
156 lines (149 loc) · 5.36 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
152
153
154
155
156
<?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>
<parent>
<groupId>com.itextpdf</groupId>
<artifactId>root</artifactId>
<version>9.0.1-SNAPSHOT</version>
<relativePath/>
</parent>
<artifactId>cleanup</artifactId>
<version>5.0.1-SNAPSHOT</version>
<name>pdfSweep</name>
<description>Redact PDF documents. If you have to share PDFs with different departments or send them out of house, but
they
include some confidential, sensitive information which should not be shared, pdfSweep is your solution. Redact a PDF
containing sensitive, confidential information, such as personal medical information, account numbers, national
identification numbers, personal details or social security numbers in a reliable and secure way. Data redaction
with pdfSweep removes such data including any underlying information, making it impossible for such information to
be recovered. With pdfSweep you can also redact drawings or parts of drawings you do not want your competition to
see. PDF Data redaction with pdfSweep gives you the piece of mind that your companies confidential information
remains just that, confidential.
</description>
<url>https://itextpdf.com/products/itext-7/pdfsweep</url>
<scm>
<connection>scm:git:ssh://[email protected]:7999/i7j/cleanup.git</connection>
<url>https://git.itextsupport.com/projects/I7J/repos/cleanup</url>
</scm>
<properties>
<itext.version>${project.parent.version}</itext.version>
</properties>
<dependencies>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>io</artifactId>
<version>${itext.version}</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>kernel</artifactId>
<version>${itext.version}</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>layout</artifactId>
<version>${itext.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-imaging</artifactId>
<version>1.0-alpha1</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>pdftest</artifactId>
<version>${itext.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
</repository>
<repository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<id>itext-snapshot</id>
<name>iText Repository - snapshots</name>
<url>https://repo.itextsupport.com/snapshot</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>itext-releases</id>
<name>iText Repository - releases</name>
<url>https://repo.itextsupport.com/releases</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>with-sharpen</id>
<build>
<plugins>
<plugin>
<groupId>sharpen</groupId>
<artifactId>sharpen-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>sharpen</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>sharpen</groupId>
<artifactId>standard-framework-mapping</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>sharpen</groupId>
<artifactId>cleanup-sharpen-mapping</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<configuration>
<projectName>cleanup</projectName>
<cSharpTargetFolder>./../../sharp/cleanup</cSharpTargetFolder>
<cSharpSourceCodeDestination>itext/itext.cleanup</cSharpSourceCodeDestination>
<cSharpTestCodeDestination>itext.tests/itext.cleanup.tests</cSharpTestCodeDestination>
<buildDotnet>${sharpen.builddotnet}</buildDotnet>
<showDiff>${sharpen.showdiff}</showDiff>
<sourceCodeFiles>
<file>**/src/main/java/**/*.java</file>
</sourceCodeFiles>
<testCodeFiles>
<file>**/src/test/java/**/*.java</file>
</testCodeFiles>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>