Skip to content

Commit 44dda85

Browse files
committed
Fix dialog on to scale correctly vertically.
Change version to 1.0.6-SNAPSHOT
1 parent 1dc8449 commit 44dda85

File tree

12 files changed

+57
-12
lines changed

12 files changed

+57
-12
lines changed

src/ServiceStackEclipse/.project

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>parent</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.m2e.core.maven2Builder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
16+
</natures>
17+
</projectDescription>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
34
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4-
<classpathentry kind="src" path="src"/>
5+
<classpathentry kind="src" path="src/"/>
6+
<classpathentry exported="true" kind="lib" path="libs/httpcore-4.3.2.jar"/>
57
<classpathentry exported="true" kind="lib" path="libs/httpclient-4.3.3.jar"/>
68
<classpathentry exported="true" kind="lib" path="libs/maven-core-3.0.5.jar"/>
79
<classpathentry exported="true" kind="lib" path="libs/maven-model-3.0.5.jar"/>
810
<classpathentry exported="true" kind="lib" path="libs/plexus-utils-2.0.6.jar"/>
911
<classpathentry exported="true" kind="lib" path="bin" sourcepath="bin"/>
10-
<classpathentry exported="true" kind="lib" path="libs/httpcore-4.3.2.jar"/>
11-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
12-
<classpathentry kind="output" path="bin"/>
12+
<classpathentry kind="output" path="target/classes"/>
1313
</classpath>

src/ServiceStackEclipse/ServiceStackEclipse.Bundle/.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,14 @@
2020
<arguments>
2121
</arguments>
2222
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.m2e.core.maven2Builder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
2328
</buildSpec>
2429
<natures>
30+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
2531
<nature>org.eclipse.pde.PluginNature</nature>
2632
<nature>org.eclipse.jdt.core.javanature</nature>
2733
</natures>

src/ServiceStackEclipse/ServiceStackEclipse.Bundle/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: Eclipse
44
Bundle-SymbolicName: net.servicestack.eclipse;singleton:=true
5-
Bundle-Version: 1.0.6
5+
Bundle-Version: 1.0.6.qualifier
66
Bundle-Vendor: ServiceStack
77
Require-Bundle: org.eclipse.ui,
88
org.eclipse.core.resources,

src/ServiceStackEclipse/ServiceStackEclipse.Bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<version>1.0.6</version>
7+
<version>1.0.6-SNAPSHOT</version>
88
<artifactId>net.servicestack.eclipse</artifactId>
99
<packaging>eclipse-plugin</packaging>
1010
<name>ServiceStackEclipse.Bundle</name>

src/ServiceStackEclipse/ServiceStackEclipse.Bundle/src/net/servicestack/eclipse/wizard/AddReferencePage.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public void createControl(Composite parent) {
5656
// composite.setBounds(100, 100, 450, 300);
5757

5858
GridLayout layout = new GridLayout();
59-
GridData gd = new GridData(GridData.FILL_HORIZONTAL);
59+
GridData gd = new GridData(GridData.FILL_BOTH);
6060
composite.setLayout(layout);
6161
layout.numColumns = 1;
6262
Label addressLabel = new Label(composite, SWT.NONE);
@@ -116,7 +116,6 @@ public void verifyText(VerifyEvent event) {
116116
});
117117

118118
setControl(composite);
119-
composite.getShell().setSize(550, 395);
120119
dialogChanged();
121120
}
122121

src/ServiceStackEclipse/ServiceStackEclipse.Feature/.project

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.m2e.core.maven2Builder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
20+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
1521
<nature>org.eclipse.pde.FeatureNature</nature>
1622
</natures>
1723
</projectDescription>

src/ServiceStackEclipse/ServiceStackEclipse.Feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="net.servicestack.eclipse.feature"
44
label="ServiceStackEclipse"
5-
version="1.0.6"
5+
version="1.0.6.qualifier"
66
provider-name="ServiceStack">
77

88
<description url="http://github.com/ServiceStack/ServiceStack.Java">

src/ServiceStackEclipse/ServiceStackEclipse.Feature/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<version>1.0.6</version>
7+
<version>1.0.6-SNAPSHOT</version>
88
<artifactId>net.servicestack.eclipse.feature</artifactId>
99
<packaging>eclipse-feature</packaging>
1010
<name>ServiceStackEclipse.Feature</name>
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>ServiceStackEclipse.Repository</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.m2e.core.maven2Builder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
</buildSpec>
14+
<natures>
15+
<nature>org.eclipse.m2e.core.maven2Nature</nature>
16+
</natures>
17+
</projectDescription>

0 commit comments

Comments
 (0)