Skip to content

Commit 3676392

Browse files
Merge pull request #19 from ali-salman/master
Aspose.Pdf Java (Maven) for Eclipse v1.0
2 parents 1ee9492 + 78c11ae commit 3676392

38 files changed

+3507
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>AsposePdfEclipseFeature</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.pde.FeatureBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.pde.FeatureNature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bin.includes = feature.xml
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feature
3+
id="com.aspose.pdf.java.maven"
4+
label="Aspose.Pdf Java (Maven) for Eclipse"
5+
version="1.0"
6+
provider-name="http://www.aspose.com">
7+
8+
<description>
9+
Aspose.Pdf Maven Project wizard creates Maven Project for using
10+
Aspose.Pdf for Java API within Eclipse IDE.
11+
Aspose.Pdf for Java is a robust PDF document creation API that
12+
enables your Java applications to read, write and manipulate
13+
PDF documents without using Adobe Acrobat.
14+
Aspose.Pdf for Java offers an incredible wealth of features,
15+
these include: PDF compression options, table creation and manipulation,
16+
graph support, image functions, extensive hyperlink functionality,
17+
extended security controls and custom font handling.
18+
Aspose.Pdf Maven Project wizard fetch and configures the latest
19+
Maven dependency reference of Aspose.Pdf for Java from the Aspose
20+
Cloud Maven Repository.
21+
The wizard also gives you option to download the Code Examples
22+
to use Aspose.Pdf for Java API.
23+
Once you are finished with this wizard - created Maven project
24+
and downloaded Code Examples, next you can insert those Code
25+
Examples to use Aspose.Pdf for Java API in your Project from
26+
File -&gt; New -&gt; Other -&gt; Aspose.Pdf Code Example
27+
The newly created project and the Code Examples you added is
28+
now ready to be enhanced, all required resources and references
29+
are also automatically added.
30+
</description>
31+
32+
<license url="">
33+
The MIT License (MIT)
34+
Copyright (c) 2001-2016 Aspose Pty Ltd
35+
36+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
37+
38+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
39+
40+
THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
41+
</license>
42+
43+
<plugin
44+
id="com.aspose.pdf.java.maven.plugin"
45+
download-size="0"
46+
install-size="0"
47+
version="1.0.0"
48+
unpack="false"/>
49+
50+
</feature>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
4+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5+
<classpathentry kind="src" path="src"/>
6+
<classpathentry kind="output" path="bin"/>
7+
</classpath>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>AsposePdfEclipsePlugin</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.pde.ManifestBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.pde.SchemaBuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.pde.PluginNature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
</natures>
28+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
4+
org.eclipse.jdt.core.compiler.compliance=1.7
5+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.source=1.7
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source.. = src/
2+
output.. = bin/
3+
bin.includes = META-INF/,\
4+
.,\
5+
plugin.xml,\
6+
resources/
7+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<?eclipse version="3.4"?>
3+
<plugin>
4+
<extension
5+
point="org.eclipse.ui.newWizards">
6+
<wizard
7+
category="org.eclipse.m2e"
8+
class="com.aspose.pdf.maven.AsposeMavenProjectWizard"
9+
icon="resources/Aspose.png"
10+
id="asposeplugin.wizard.new.mavenprojectwizard"
11+
name="Aspose.Pdf Maven Project"
12+
project="true">
13+
</wizard>
14+
<wizard
15+
category="org.eclipse.jdt.ui.java"
16+
class="com.aspose.pdf.maven.examples.AsposeExampleWizard"
17+
icon="resources/Aspose.png"
18+
id="asposeplugin.wizard.new.mavenexamplewizard"
19+
name="Aspose.Pdf Code Example"
20+
project="false">
21+
</wizard>
22+
</extension>
23+
24+
</plugin>
3.61 KB
Loading
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output="target/classes" path="src/main/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15+
<attributes>
16+
<attribute name="optional" value="true"/>
17+
<attribute name="maven.pomderived" value="true"/>
18+
</attributes>
19+
</classpathentry>
20+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
21+
<attributes>
22+
<attribute name="maven.pomderived" value="true"/>
23+
</attributes>
24+
</classpathentry>
25+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
26+
<attributes>
27+
<attribute name="maven.pomderived" value="true"/>
28+
</attributes>
29+
</classpathentry>
30+
<classpathentry kind="output" path="target/classes"/>
31+
</classpath>

0 commit comments

Comments
 (0)