├── .github
└── workflows
│ └── maven.yml
├── .gitignore
├── LICENSE
├── README.md
├── gwt-boot-dependencies
└── pom.xml
├── gwt-boot-parent
└── pom.xml
├── gwt-boot-starters
├── gwt-boot-starter-dagger2
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── Dagger2Starter.gwt.xml
├── gwt-boot-starter-domino-rest
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── DominoRestStarter.gwt.xml
├── gwt-boot-starter-elemento-core
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── ElementoCoreStarter.gwt.xml
├── gwt-boot-starter-gin
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── GinStarter.gwt.xml
├── gwt-boot-starter-gwteventbinder
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── GwtEventBinderStarter.gwt.xml
├── gwt-boot-starter-parent
│ └── pom.xml
├── gwt-boot-starter-restygwt
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── RestyGwtStarter.gwt.xml
├── gwt-boot-starter-rxgwt
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── RxGwtStarter.gwt.xml
├── gwt-boot-starter-test
│ └── pom.xml
├── gwt-boot-starter-ui-dncomponents
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── DncomponentsStarter.gwt.xml
├── gwt-boot-starter-ui-domino
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── DominoStarter.gwt.xml
├── gwt-boot-starter-ui-gwtbootstrap3
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── GwtBootstrap3Starter.gwt.xml
├── gwt-boot-starter-ui-gwtmaterial
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── GwtMaterialStarter.gwt.xml
├── gwt-boot-starter-ui-vue-gwt
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── VueGwtStarter.gwt.xml
├── gwt-boot-starter
│ ├── pom.xml
│ └── src
│ │ └── main
│ │ └── resources
│ │ └── com
│ │ └── github
│ │ └── gwtboot
│ │ └── starter
│ │ └── Starter.gwt.xml
└── pom.xml
└── pom.xml
/.github/workflows/maven.yml:
--------------------------------------------------------------------------------
1 | # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3 |
4 | name: Java CI with Maven
5 |
6 | on:
7 | push:
8 | branches: [ "master" ]
9 | pull_request:
10 | branches: [ "master" ]
11 |
12 | jobs:
13 | build:
14 |
15 | runs-on: ubuntu-latest
16 |
17 | steps:
18 | - uses: actions/checkout@v3
19 | - name: Set up JDK 11
20 | uses: actions/setup-java@v3
21 | with:
22 | java-version: '11'
23 | distribution: 'temurin'
24 | cache: maven
25 | - name: Build with Maven
26 | run: mvn -B install --file pom.xml
27 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled class file
2 | *.class
3 |
4 | # Log file
5 | *.log
6 |
7 | # BlueJ files
8 | *.ctxt
9 |
10 | # Mobile Tools for Java (J2ME)
11 | .mtj.tmp/
12 |
13 | # Package Files
14 | *.jar
15 | *.war
16 | *.ear
17 | *.zip
18 | *.tar.gz
19 |
20 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
21 | hs_err_pid*
22 |
23 | # Maven
24 | target
25 |
26 | # Idea
27 | .idea
28 | *.iml
29 |
30 | # Mac
31 | .DS_STORE
32 |
33 | # Eclipse
34 | .project
35 | .classpath
36 | .settings
37 |
38 | # VSCode
39 | .factorypath
40 | .vscode
41 |
42 | .env
43 | */web/WEB-INF/web.xml
44 |
45 | # Maven versions backup
46 | pom.xml.versionsBackup
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright [yyyy] [name of copyright owner]
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # GWT Boot: Starters
2 |
3 | 
4 |
5 | ## GWT BOMs and POMs - GWT Dependencies and Starters
6 |
7 | **GWT Boot Starter is NOT an integration between Spring Boot and GWT!**
8 |
9 | If you need a modern introduction to GWT / J2CL take a look at this [Padlet for GWT / J2CL](https://bit.ly/GWTIntroPadlet).
10 |
11 | GWT Boot Starter dependencies is basically a simple Starter dependencies
12 | collection for GWT just like Spring Boot Starter dependencies.
13 | The idea is taken from
14 | [Spring Boot Starters](https://github.com/spring-projects/spring-boot/tree/master/spring-boot-project/spring-boot-starters)
15 |
16 | GWT Boot Starters are a set of convenient dependency descriptors
17 | that you can include in your application.
18 | You get a one-stop-shop for all the GWT and related technology
19 | that you need without having to hunt through sample code and
20 | copy paste loads of dependency descriptors. For example,
21 | if you want to get started using GWT and [Domino UI](https://github.com/DominoKit/domino-ui)
22 | for your Material Design and [Elemental2](https://github.com/google/elemental2) just include the
23 | `gwt-boot-starter-ui-domino` dependency in your project,
24 | and you are good to go.
25 |
26 | **GWT Boot Starter artifacts are released on the [Maven Central](https://search.maven.org/search?q=com.github.gwtboot)**
27 |
28 | ## List of all supported GWT frameworks
29 |
30 | | ArtifactId / GWT Module: com.github.gwtboot.starter.* | Framework | Supported Browser Technology | Status | GWT / Elemento Core Version | Examples |
31 | | ---------------------------------- | ----------------------------------------------------------------- | ---------------------------- | ---------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
32 | | gwt-boot-starter-parent | Parent starter for GWT Boot | No web | Integrated | - | - |
33 | | gwt-boot-starter / Starter | Standard GWT widgets | Widget | Integrated | 2.10.0 | [gwt-boot-sample-basic](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-basic) |
34 | | gwt-boot-starter-ui-domino / DominoStarter | [domino-ui](https://github.com/DominoKit/domino-ui) | Elemental2 | Integrated | 2.10.0 | [gwt-boot-sample-ui-domino](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-domino), [gwt-boot-sample-ui-domino-dagger2](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-domino-dagger2) |
35 | | gwt-boot-starter-ui-gwtbootstrap3 / GwtBootstrap3Starter | [gwtbootstrap3](https://github.com/gwtbootstrap3/gwtbootstrap3) | Widget | Integrated | 2.10.0 | [gwt-boot-sample-ui-gwtbootstrap3](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-gwtbootstrap3) |
36 | | gwt-boot-starter-ui-vue-gwt / VueGwtStarter | [vue-gwt](https://github.com/Axellience/vue-gwt) | Elemental2 | Integrated | 2.10.0 | [gwt-boot-sample-ui-vue-gwt](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-vue-gwt) |
37 | | gwt-boot-starter-ui-gwtreact | [gwt-react](https://github.com/GWTReact/gwt-react) | Elemental2 | - | | - |
38 | | gwt-boot-starter-ui-gwtmaterial / GwtMaterialStarter | [gwt-material](https://github.com/GwtMaterialDesign/gwt-material) | Widget | Integrated | 2.10.0 | [gwt-boot-sample-ui-gwtmaterial](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-gwtmaterial) |
39 | | gwt-boot-starter-ui-errai | [errai](https://github.com/errai/errai) | Elemental2 | - | - | - |
40 | | gwt-boot-starter-rxgwt / RxGwtStarter | [rxgwt](https://github.com/intendia-oss/rxgwt) | No web | Integrated | 2.10.0 | [gwt-boot-sample-rxgwt](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-rxgwt) |
41 | | gwt-boot-starter-restygwt / RestyGwtStarter | [resty-gwt](https://github.com/resty-gwt/resty-gwt) | No web | Integrated | 2.10.0 | [gwt-boot-sample-collection](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-collection) |
42 | | gwt-boot-starter-test | [gwtmockito](https://github.com/google/gwtmockito) | No web | Integrated | 2.10.0 | [gwt-boot-sample-collection](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-collection), [gwt-boot-sample-ui-domino-dagger2](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-domino-dagger2) |
43 | | gwt-boot-starter-gwteventbinder / GwtEventBinderStarter | [gwteventbinder](https://github.com/google/gwteventbinder) | No web | Integrated | 2.10.0 | [gwt-boot-sample-collection](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-collection) |
44 | | gwt-boot-starter-gin / GinStarter | [gin](https://github.com/gwtplus/google-gin) | No web | Integrated | 2.10.0 | [gwt-boot-sample-collection](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-collection) |
45 | | gwt-boot-starter-dagger2 / Dagger2Starter | [dagger2](https://google.github.io/dagger) | No web | Integrated | 2.10.0 | [gwt-boot-sample-ui-domino-dagger2](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-domino-dagger2) |
46 | | gwt-boot-starter-elemento-core / ElementoCoreStarter | [elemento](https://github.com/hal/elemento) | Elemental2 | Integrated | 2.10.0 | [gwt-boot-sample-elemento-core](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-elemento-core) |
47 | | gwt-boot-starter-domino-rest / DominoRestStarter | [domino-rest](https://github.com/DominoKit/domino-rest) | Elemental2 | Integrated | 2.10.0 | [gwt-boot-sample-domino-rest](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-domino-rest) |
48 | | gwt-boot-starter-nalu | [nalu](https://github.com/NaluKit/nalu) | No web | - | - | - |
49 | | gwt-boot-starter-dncomponents / DncomponentsStarter | [dn-components](https://dncomponents.com) | Elemental2 | Integrated | 2.10.0 | [gwt-boot-sample-ui-dncomponents](https://github.com/gwtboot/gwt-boot-samples/tree/master/gwt-boot-sample-ui-dncomponents) |
50 |
51 | ## Using GWT Boot Starters
52 |
53 | ### Using gwt-boot-starter-parent as Parent POM
54 |
55 | Similar to [Spring Boot with Parent POM](http://www.baeldung.com/spring-boot-start)
56 |
57 | ### Using without Parent POM
58 |
59 | Similar to [Spring Boot without Parent POM](http://www.baeldung.com/spring-boot-dependency-management-custom-parent)
60 |
61 | ## Wiki
62 |
63 | Check out our Wiki for [How-Tos](https://github.com/gwtboot/gwt-boot-modules/wiki) and other information.
64 |
65 | ## Examples
66 |
67 | Example of each Starter can be found at the table above "Examples" column. All the examples are in this [repository](https://github.com/gwtboot/gwt-boot-samples).
68 |
--------------------------------------------------------------------------------
/gwt-boot-dependencies/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-modules
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-dependencies
31 | pom
32 | gwt-boot-dependencies
33 | GWT Boot Standard Dependencies
34 |
35 |
36 |
37 | 1.2.0-SNAPSHOT
38 |
39 |
40 | 2.10.0
41 | 1.0.1
42 | 0.9.4
43 | 2.6.1
44 | 2.2.7
45 | 2.1
46 | 1.1.9
47 | 1.1.0
48 | 3.0.0
49 | 1.0.0-RC13
50 | 1.0.10
51 | 1
52 | 2.43.2
53 | 1.0.1
54 | 2.3
55 | 2.2.20-gwt1
56 | 1.0.0-RC7
57 | 2.4.2
58 |
59 |
60 |
61 |
62 |
63 |
64 | com.google.gwt
65 | gwt
66 | ${gwt.version}
67 | pom
68 | import
69 |
70 |
71 |
72 |
73 |
74 | org.gwtbootstrap3
75 | gwtbootstrap3
76 | ${gwt-bootstrap3.version}
77 |
78 |
79 | com.google.gwt
80 | gwt-user
81 |
82 |
83 |
84 |
85 | org.gwtbootstrap3
86 | gwtbootstrap3-extras
87 | ${gwt-bootstrap3.version}
88 |
89 |
90 |
91 | com.github.gwtmaterialdesign
92 | gwt-material
93 | ${gwt-material.version}
94 |
95 |
96 | com.google.gwt
97 | gwt-user
98 |
99 |
100 |
101 |
102 | com.github.gwtmaterialdesign
103 | gwt-material-themes
104 | ${gwt-material.version}
105 |
106 |
107 | com.github.gwtmaterialdesign
108 | gwt-material-addins
109 | ${gwt-material.version}
110 |
111 |
112 | com.github.gwtmaterialdesign
113 | gwt-material-table
114 | ${gwt-material.version}
115 |
116 |
117 | com.github.gwtmaterialdesign
118 | gwt-material-jquery
119 | ${gwt-material.version}
120 |
121 |
122 |
123 | org.fusesource.restygwt
124 | restygwt
125 | ${gwt-restygwt.version}
126 |
127 |
128 | javax.ws.rs
129 | javax.ws.rs-api
130 | ${rs-api.version}
131 |
132 |
133 |
134 | com.google.gwt.gwtmockito
135 | gwtmockito
136 | ${gwt-mockito.version}
137 |
138 |
139 |
140 | com.google.gwt.eventbinder
141 | eventbinder
142 | ${gwt-eventbinder.version}
143 |
144 |
145 |
146 | io.github.gwtplus.gin
147 | gin
148 | ${gwt-gin.version}
149 |
150 |
151 |
152 | javax.inject
153 | javax.inject
154 | ${inject-api.version}
155 |
156 |
157 | com.google.dagger
158 | dagger-gwt
159 | ${gwt-dagger2.version}
160 |
161 |
162 | com.google.dagger
163 | dagger-compiler
164 | ${gwt-dagger2.version}
165 |
166 |
167 |
168 | org.dominokit
169 | domino-ui
170 | ${gwt-dominoui.version}
171 |
172 |
173 | org.dominokit
174 | domino-ui
175 | ${gwt-dominoui.version}
176 | sources
177 |
178 |
179 |
180 | com.axellience
181 | vue-gwt
182 | ${vue-gwt.version}
183 |
184 |
185 | com.axellience
186 | vue-gwt-processors
187 | ${vue-gwt.version}
188 | true
189 |
190 |
191 |
195 |
196 | com.intendia.gwt.rxgwt2
197 | rxgwt
198 | ${rx-gwt.version}
199 |
200 |
201 | com.intendia.gwt
202 | rxjava2-gwt
203 | ${rx-java-gwt.version}
204 |
205 |
206 |
207 | org.jboss.elemento
208 | elemento-core
209 | ${gwt-elemento.version}
210 |
211 |
212 |
213 | org.dominokit
214 | domino-rest-client
215 | ${gwt-domino-rest.version}
216 |
217 |
218 | org.dominokit
219 | domino-rest-processor
220 | ${gwt-domino-rest.version}
221 |
222 |
223 | org.dominokit
224 | domino-rest-shared
225 | ${gwt-domino-rest.version}
226 |
227 |
228 |
229 | com.dncomponents.core
230 | template_annotation_processor
231 | ${dncomponents.version}
232 |
233 |
234 | com.dncomponents.core
235 | core-uui
236 | ${dncomponents.version}
237 | compile
238 |
239 |
240 | com.dncomponents.core
241 | bootstrap-ui
242 | ${dncomponents.version}
243 | compile
244 |
245 |
246 |
247 |
248 | com.github.gwtboot
249 | gwt-boot-starter
250 | ${gwt-boot-modules.version}
251 |
252 |
253 | com.github.gwtboot
254 | gwt-boot-starter-dagger2
255 | ${gwt-boot-modules.version}
256 |
257 |
258 | com.github.gwtboot
259 | gwt-boot-starter-gin
260 | ${gwt-boot-modules.version}
261 |
262 |
263 | com.github.gwtboot
264 | gwt-boot-starter-gwteventbinder
265 | ${gwt-boot-modules.version}
266 |
267 |
268 | com.github.gwtboot
269 | gwt-boot-starter-restygwt
270 | ${gwt-boot-modules.version}
271 |
272 |
273 | com.github.gwtboot
274 | gwt-boot-starter-rxgwt
275 | ${gwt-boot-modules.version}
276 |
277 |
278 | com.github.gwtboot
279 | gwt-boot-starter-test
280 | ${gwt-boot-modules.version}
281 |
282 |
283 | com.github.gwtboot
284 | gwt-boot-starter-ui-gwtbootstrap3
285 | ${gwt-boot-modules.version}
286 |
287 |
288 | com.github.gwtboot
289 | gwt-boot-starter-ui-gwtmaterial
290 | ${gwt-boot-modules.version}
291 |
292 |
293 | com.github.gwtboot
294 | gwt-boot-starter-ui-domino
295 | ${gwt-boot-modules.version}
296 |
297 |
298 | com.github.gwtboot
299 | gwt-boot-starter-ui-vue-gwt
300 | ${gwt-boot-modules.version}
301 |
302 |
303 | com.github.gwtboot
304 | gwt-boot-starter-ui-dncomponents
305 | ${gwt-boot-modules.version}
306 |
307 |
308 | com.github.gwtboot
309 | gwt-boot-starter-elemento-core
310 | ${gwt-boot-modules.version}
311 |
312 |
313 | com.github.gwtboot
314 | gwt-boot-starter-domino-rest
315 | ${gwt-boot-modules.version}
316 |
317 |
318 |
319 |
320 |
321 |
322 |
323 |
324 | net.ltgt.gwt.maven
325 | gwt-maven-plugin
326 | ${gwt-maven-plugin.version}
327 | true
328 |
329 |
330 |
331 | generate-module
332 | compile
333 |
334 |
335 |
336 |
337 | true
338 |
339 |
340 |
341 | org.apache.maven.plugins
342 | maven-compiler-plugin
343 | 3.7.0
344 |
345 | 1.8
346 | 1.8
347 |
348 |
349 |
350 |
351 |
352 |
353 |
--------------------------------------------------------------------------------
/gwt-boot-parent/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-dependencies
27 | 1.2.0-SNAPSHOT
28 | ../gwt-boot-dependencies
29 |
30 | gwt-boot-parent
31 | pom
32 | gwt-boot-parent
33 | GWT Boot Parent
34 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-dagger2/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | gwt-boot-starters
26 | com.github.gwtboot
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-dagger2
31 | gwt-boot-starter-dagger2
32 | GWT Boot Starter Dagger2
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | com.google.dagger
41 | dagger-gwt
42 |
43 |
44 | com.google.dagger
45 | dagger-compiler
46 |
47 |
48 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-dagger2/src/main/resources/com/github/gwtboot/starter/Dagger2Starter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-domino-rest/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-domino-rest
31 | gwt-boot-starter-domino-rest
32 | GWT Boot Domino REST
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | org.dominokit
41 | domino-rest-client
42 |
43 |
44 | org.dominokit
45 | domino-rest-processor
46 |
47 |
48 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-domino-rest/src/main/resources/com/github/gwtboot/starter/DominoRestStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-elemento-core/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-elemento-core
31 | gwt-boot-starter-elemento-core
32 | GWT Boot Elemento Core
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | org.jboss.elemento
41 | elemento-core
42 |
43 |
44 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-elemento-core/src/main/resources/com/github/gwtboot/starter/ElementoCoreStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-gin/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | gwt-boot-starters
26 | com.github.gwtboot
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-gin
31 | gwt-boot-starter-gin
32 | GWT Boot Starter Gin
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | io.github.gwtplus.gin
41 | gin
42 |
43 |
44 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-gin/src/main/resources/com/github/gwtboot/starter/GinStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-gwteventbinder/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | gwt-boot-starters
26 | com.github.gwtboot
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-gwteventbinder
31 | gwt-boot-starter-gwteventbinder
32 | GWT Boot Starter GWTEventBinder
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | com.google.gwt.eventbinder
41 | eventbinder
42 |
43 |
44 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-gwteventbinder/src/main/resources/com/github/gwtboot/starter/GwtEventBinderStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-parent/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-dependencies
27 | 1.2.0-SNAPSHOT
28 | ../../gwt-boot-dependencies
29 |
30 | gwt-boot-starter-parent
31 | pom
32 | gwt-boot-starter-parent
33 | GWT Boot Starter Parent Dependencies
34 |
35 |
36 | UTF-8
37 | UTF-8
38 | 1.8
39 | 1.8
40 |
41 |
42 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-restygwt/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-restygwt
31 | gwt-boot-starter-restygwt
32 | GWT Boot Starter RestyGWT
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | org.fusesource.restygwt
41 | restygwt
42 |
43 |
44 | javax.ws.rs
45 | javax.ws.rs-api
46 |
47 |
48 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-restygwt/src/main/resources/com/github/gwtboot/starter/RestyGwtStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-rxgwt/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-rxgwt
31 | gwt-boot-starter-rxgwt
32 | GWT Boot Starter RxGWT
33 |
34 |
35 | 1.0.10-gwtcom
36 |
37 |
38 |
39 |
40 | com.github.gwtboot
41 | gwt-boot-starter
42 |
43 |
44 | com.intendia.gwt.rxgwt2
45 | rxgwt
46 |
47 |
48 | com.intendia.gwt
49 | rxjava2-gwt
50 |
51 |
52 | org.jboss.elemento
53 | elemento-core
54 | ${elemento-core.version}
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-rxgwt/src/main/resources/com/github/gwtboot/starter/RxGwtStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-test/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | gwt-boot-starters
26 | com.github.gwtboot
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-test
31 | gwt-boot-starter-test
32 | GWT Boot Starter Test
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | com.google.gwt.gwtmockito
41 | gwtmockito
42 |
43 |
44 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-dncomponents/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | gwt-boot-starters
26 | com.github.gwtboot
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-ui-dncomponents
31 | gwt-boot-starter-ui-dncomponents
32 | GWT Boot Starter dncomponents
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | com.dncomponents.core
41 | core-uui
42 |
43 |
44 | com.dncomponents.core
45 | bootstrap-ui
46 |
47 |
48 | com.dncomponents.core
49 | template_annotation_processor
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-dncomponents/src/main/resources/com/github/gwtboot/starter/DncomponentsStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-domino/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | gwt-boot-starters
26 | com.github.gwtboot
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-ui-domino
31 | gwt-boot-starter-ui-domino
32 | GWT Boot Starter DominoUI
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | org.dominokit
41 | domino-ui
42 |
43 |
44 | org.dominokit
45 | domino-ui
46 | sources
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-domino/src/main/resources/com/github/gwtboot/starter/DominoStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-gwtbootstrap3/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-ui-gwtbootstrap3
31 | gwt-boot-starter-ui-gwtbootstrap3
32 | GWT Boot Starter GWTBootstrap3
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | org.gwtbootstrap3
41 | gwtbootstrap3
42 |
43 |
44 | org.gwtbootstrap3
45 | gwtbootstrap3-extras
46 |
47 |
48 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-gwtbootstrap3/src/main/resources/com/github/gwtboot/starter/GwtBootstrap3Starter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-gwtmaterial/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-ui-gwtmaterial
31 | gwt-boot-starter-ui-gwtmaterial
32 | GWT Boot Starter GWTMaterialDesign
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | com.github.gwtmaterialdesign
41 | gwt-material
42 |
43 |
44 | com.github.gwtmaterialdesign
45 | gwt-material-themes
46 |
47 |
48 | com.github.gwtmaterialdesign
49 | gwt-material-addins
50 |
51 |
52 | com.github.gwtmaterialdesign
53 | gwt-material-table
54 |
55 |
56 | com.github.gwtmaterialdesign
57 | gwt-material-jquery
58 |
59 |
60 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-gwtmaterial/src/main/resources/com/github/gwtboot/starter/GwtMaterialStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-vue-gwt/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter-ui-vue-gwt
31 | gwt-boot-starter-ui-vue-gwt
32 | GWT Boot Starter Vue GWT
33 |
34 |
35 |
36 | com.github.gwtboot
37 | gwt-boot-starter
38 |
39 |
40 | com.axellience
41 | vue-gwt
42 |
43 |
44 | com.axellience
45 | vue-gwt-processors
46 |
47 |
48 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter-ui-vue-gwt/src/main/resources/com/github/gwtboot/starter/VueGwtStarter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-starters
27 | 1.2.0-SNAPSHOT
28 | ../
29 |
30 | gwt-boot-starter
31 | gwt-boot-starter
32 | GWT Boot Starter Basic - Core Dependencies
33 |
34 |
35 |
36 | com.google.gwt
37 | gwt-user
38 |
39 |
40 | com.google.gwt
41 | gwt-dev
42 |
43 |
44 |
--------------------------------------------------------------------------------
/gwt-boot-starters/gwt-boot-starter/src/main/resources/com/github/gwtboot/starter/Starter.gwt.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/gwt-boot-starters/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
23 | 4.0.0
24 |
25 | com.github.gwtboot
26 | gwt-boot-parent
27 | 1.2.0-SNAPSHOT
28 | ../gwt-boot-parent
29 |
30 | gwt-boot-starters
31 | pom
32 | gwt-boot-starters
33 | GWT Boot Starters Dependencies
34 |
35 |
36 | gwt-boot-starter-parent
37 | gwt-boot-starter
38 | gwt-boot-starter-dagger2
39 | gwt-boot-starter-gin
40 | gwt-boot-starter-restygwt
41 | gwt-boot-starter-rxgwt
42 | gwt-boot-starter-test
43 | gwt-boot-starter-ui-gwtbootstrap3
44 | gwt-boot-starter-ui-gwtmaterial
45 | gwt-boot-starter-gwteventbinder
46 | gwt-boot-starter-ui-domino
47 | gwt-boot-starter-ui-vue-gwt
48 | gwt-boot-starter-elemento-core
49 | gwt-boot-starter-domino-rest
50 | gwt-boot-starter-ui-dncomponents
51 |
52 |
53 |
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
21 | 4.0.0
22 | com.github.gwtboot
23 | gwt-boot-modules
24 | 1.2.0-SNAPSHOT
25 | pom
26 | gwt-boot-modules
27 | https://github.com/gwtboot/gwt-boot-modules
28 | GWT Boot Modules
29 |
30 |
31 |
32 |
33 |
34 |
35 | lofidewanto@gmail.com
36 | Dr. Lofi Dewanto
37 | lofidewanto@gmail.com
38 | gwtboot
39 | https://github.com/gwtboot/
40 |
41 | Architect
42 | Developer
43 |
44 | +1
45 |
46 |
47 | adrien@abaron.net
48 | Adrien Baron
49 | adrien@abaron.net
50 | gwtboot
51 | https://github.com/gwtboot/
52 |
53 | Architect
54 | Developer
55 |
56 | +1
57 |
58 |
59 | dolb90@gmail.com
60 | Ben Dol
61 | dolb90@gmail.com
62 | gwtboot
63 | https://github.com/gwtboot/
64 |
65 | Architect
66 | Developer
67 |
68 | +1
69 |
70 |
71 | akabme@gmail.com
72 | Ahmad K. Bawaneh
73 | akabme@gmail.com
74 | gwtboot
75 | https://github.com/gwtboot/
76 |
77 | Architect
78 | Developer
79 |
80 | +1
81 |
82 |
83 | ignacio@bacamt.com
84 | Ignacio Baca Moreno-Torres
85 | ignacio@bacamt.com
86 | gwtboot
87 | https://github.com/gwtboot/
88 |
89 | Architect
90 | Developer
91 |
92 | +1
93 |
94 |
95 | harald.pehl@gmail.com
96 | Harald Pehl
97 | harald.pehl@gmail.com
98 | gwtboot
99 | https://github.com/gwtboot/
100 |
101 | Architect
102 | Developer
103 |
104 | +1
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 | Travis
113 | https://travis-ci.org/gwtboot/gwt-boot-modules
114 |
115 |
116 |
117 | GitHub Issues
118 | https://github.com/gwtboot/gwt-boot-modules/issues
119 |
120 |
121 |
122 |
123 | Apache License 2.0
124 | http://www.spdx.org/licenses/Apache-2.0
125 |
126 |
127 |
128 |
129 |
130 | Development List
131 | https://gitter.im/gwtproject/gwt
132 |
133 |
134 |
135 |
136 |
137 | scm:git:git@github.com:gwtboot/gwt-boot-modules.git
138 |
139 |
140 | scm:git:git@github.com:gwtboot/gwt-boot-modules.git
141 |
142 | scm:git:git@github.com:gwtboot/gwt-boot-modules.git
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 | ossrh
151 | https://oss.sonatype.org/content/repositories/snapshots
152 |
153 |
154 | ossrh
155 |
156 | https://oss.sonatype.org/service/local/staging/deploy/maven2/
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 | gwt-boot-dependencies
166 | gwt-boot-parent
167 | gwt-boot-starters
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 | org.sonatype.plugins
177 | nexus-staging-maven-plugin
178 | 1.6.8
179 | true
180 |
181 | ossrh
182 | https://oss.sonatype.org/
183 | true
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 | release
195 |
196 |
197 | performRelease
198 | true
199 |
200 |
201 |
202 |
203 |
204 | org.apache.maven.plugins
205 | maven-gpg-plugin
206 | 1.6
207 |
208 |
209 | sign-artifacts
210 | verify
211 |
212 | sign
213 |
214 |
215 |
216 |
217 |
218 | org.apache.maven.plugins
219 | maven-source-plugin
220 | 3.2.0
221 |
222 |
223 | attach-sources
224 |
225 | jar-no-fork
226 |
227 |
228 |
229 | attach-test-sources
230 |
231 | test-jar
232 |
233 |
234 |
235 |
236 |
237 | org.apache.maven.plugins
238 | maven-javadoc-plugin
239 | 3.2.0
240 |
241 |
242 | attach-javadocs
243 |
244 | jar
245 |
246 |
247 |
248 |
249 | false
250 |
251 |
252 |
253 | org.apache.maven.plugins
254 | maven-release-plugin
255 | 2.5.3
256 |
257 | true
258 | false
259 | release
260 | deploy
261 |
262 |
263 |
264 |
265 |
266 |
267 |
--------------------------------------------------------------------------------