Skip to content

Commit d955446

Browse files
Merge pull request #26 from ali-salman/master
Aspose Cells Java for Eclipse (Maven)
2 parents e3f8c3c + 9f93807 commit d955446

38 files changed

+3511
-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>AsposeCellsEclipseFeature</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: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<feature
3+
id="com.aspose.cells.java.maven"
4+
label="Aspose.Cells Java for Eclipse (Maven)"
5+
version="1.0.0.1"
6+
provider-name="http://www.aspose.com">
7+
8+
<description>
9+
Aspose.Cells Maven Project wizard creates Maven Project for using
10+
Aspose.Cells for Java API within Eclipse IDE.
11+
&quot;Aspose.Cells for Java is an award-winning Excel Spreadsheet
12+
component that allows Java developers to embed the ability to
13+
read, write and manipulate Excel® spreadsheets (XLS, XLSX, XLSM,
14+
XLSB, XLTX, SpreadsheetML, CSV, ODS), HTML, MHTML, PDF and image
15+
file formats into their own Java applications without needing
16+
to rely on Microsoft Excel®.
17+
With Aspose.Cells for Java developers can export data, format
18+
spreadsheets to the most granular level, import images, create
19+
charts, apply and calculate complex formulas, stream Excel® data&quot;
20+
Aspose.Cells Maven Project wizard fetch and configures the latest
21+
Maven dependency reference of Aspose.Cells for Java from the
22+
Aspose Cloud Maven Repository.
23+
The wizard also gives you option to download the Code Examples
24+
to use Aspose.Cells for Java API.
25+
Once you are finished with this wizard - created Maven project
26+
and downloaded Code Examples. Next you can insert those Code
27+
Examples to use Aspose.Cells for Java API in your Project from
28+
File -&gt; New -&gt; Other -&gt; Aspose.Cells Code Example
29+
The newly created project and the Code Examples you added is
30+
now ready to be enhanced, all required resources and references
31+
are also automatically added.
32+
</description>
33+
34+
<license url="">
35+
The MIT License (MIT)
36+
Copyright (c) 2001-2016 Aspose Pty Ltd
37+
38+
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:
39+
40+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
41+
42+
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.
43+
</license>
44+
45+
<plugin
46+
id="com.aspose.cells.java.maven.plugin"
47+
download-size="0"
48+
install-size="0"
49+
version="1.0.0.1"
50+
unpack="false"/>
51+
52+
</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>AsposeCellsEclipsePlugin</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>
Lines changed: 7 additions & 0 deletions
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.cells.maven.AsposeMavenProjectWizard"
9+
icon="resources/Aspose.png"
10+
id="asposeplugin.wizard.new.mavenprojectwizard"
11+
name="Aspose.Cells Maven Project"
12+
project="true">
13+
</wizard>
14+
<wizard
15+
category="org.eclipse.jdt.ui.java"
16+
class="com.aspose.cells.maven.examples.AsposeExampleWizard"
17+
icon="resources/Aspose.png"
18+
id="asposeplugin.wizard.new.mavenexamplewizard"
19+
name="Aspose.Cells Code Example"
20+
project="false">
21+
</wizard>
22+
</extension>
23+
24+
</plugin>
851 Bytes
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)