Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #93 from dmainz/master
Browse files Browse the repository at this point in the history
Fixed New AWS Java Web Project SWT error.
  • Loading branch information
zhangzhx authored Dec 26, 2017
2 parents 676b728 + ac366f9 commit 74a40f8
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ public void createControl(Composite parent) {

Group group = new Group(composite, SWT.NONE);
group.setLayoutData(layoutData);
group.setLayout(new FillLayout());
// group.setLayout(new FillLayout());
group.setLayout(new GridLayout());
accountSelectionComposite = new AccountSelectionComposite(group, SWT.None);

dataModel.setAccountId(AwsToolkitCore.getDefault().getCurrentAccountId());
Expand Down
8 changes: 8 additions & 0 deletions releng/com.amazonaws.eclipse.devide/.project
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
<name>com.amazonaws.eclipse.devide</name>
<comment></comment>
<projects>
<project>aws-toolkit-eclipse</project>
<project>com.amazonaws.eclipse.core</project>
<project>com.amazonaws.eclipse.core.feature</project>
<project>com.amazonaws.eclipse.elasticbeanstalk</project>
<project>com.amazonaws.eclipse.elasticbeanstalk.feature</project>
<project>com.amazonaws.eclipse.javasdk</project>
<project>com.amazonaws.eclipse.oxygen</project>
<project>com.amazonaws.eclipse.sdk.ui</project>
</projects>
<buildSpec>
<buildCommand>
Expand Down
4 changes: 2 additions & 2 deletions releng/com.amazonaws.eclipse.devide/category.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
<feature id="org.eclipse.wst.common.fproj.sdk" version="0.0.0"/>
<feature id="org.eclipse.wst.web_sdk.feature" version="0.0.0"/>
<feature id="org.eclipse.wst.server_adapters.sdk.feature" version="0.0.0"/>
<bundle id="com.amazonaws.eclipse.javasdk" version="1.11.130"/>
</site>
<bundle id="com.amazonaws.eclipse.javasdk" version="1.11.248"/>
</site>
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class RegionUtilsTest {
// s3 irregular regional endpoints
Pattern.compile("^(http|https)://s3-(us|eu|ap|sa)-(gov-)?(east|west|south|north|central|northeast|southeast)-(1|2).amazonaws.com(/)?$"),
// regular region endpoints
Pattern.compile("^(http|https)://\\w+\\.(\\w+\\.)?(ca|us|eu|ap|sa)-(gov-)?(east|west|south|north|central|northeast|southeast)-(1|2)\\.amazonaws\\.com(/)?$"),
Pattern.compile("^(http|https)://\\w+\\.(\\w+\\.)?(ca|us|eu|ap|sa)-(gov-)?(east|west|south|north|central|northeast|southeast)-(1|2|3)\\.amazonaws\\.com(/)?$"),
// China region endpoints, currently we only have cn-north-1 region
Pattern.compile("^(http|https)://\\w+\\.(\\w+\\.)?cn-(north|northwest)-1.amazonaws.com.cn(/)?$"),
// us-gov region endpoints
Expand Down
6 changes: 3 additions & 3 deletions thirdparty/com.amazonaws.eclipse.javasdk/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@ Export-Package: com.amazonaws.services.codedeploy,com.amazonaws.servic
Bundle-SymbolicName: com.amazonaws.eclipse.javasdk
Bundle-Name: AWS Toolkit for Eclipse Java SDK Bundle
Bundle-Version: 1.11.248
Built-By: zhaoxiz
Built-By: dmainz
Bundle-ManifestVersion: 2
Bnd-LastModified: 1513292086530
Bnd-LastModified: 1514212585795
Created-By: Apache Maven Bundle Plugin
Tool: Bnd-0.0.357
Build-Jdk: 1.8.0_151
Build-Jdk: 1.8.0_40

0 comments on commit 74a40f8

Please sign in to comment.