Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eclipsefdn-project-adopters
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adrien Gooris
eclipsefdn-project-adopters
Commits
ca614044
Commit
ca614044
authored
1 year ago
by
Martin Lowe
Browse files
Options
Downloads
Patches
Plain Diff
Update build + comments for the resources
parent
17e3ce31
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
makefile
+7
-2
7 additions, 2 deletions
makefile
src/main/java/org/eclipsefoundation/adopters/resource/AdoptersResource.java
+3
-0
3 additions, 0 deletions
...eclipsefoundation/adopters/resource/AdoptersResource.java
with
10 additions
and
2 deletions
makefile
+
7
−
2
View file @
ca614044
SHELL
=
/bin/bash
install
:
;
npm ci
--no-cache
dev-start
:
;
mvn compile
-e
quarkus:dev
clean
:
;
mvn clean
compile-assets
:
;
npm
test
&&
npm run build
compile-java
:
;
compile-java
:
compile-assets
;
mvn compile package
compile-java-quick
:
;
compile-java-quick
:
compile-assets
;
mvn compile package
-Dmaven
.test.skip
=
true
compile
:
clean compile-java;
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/eclipsefoundation/adopters/resource/AdoptersResource.java
+
3
−
0
View file @
ca614044
...
...
@@ -42,6 +42,8 @@ import io.quarkus.qute.Template;
* Retrieves adopted projects along with adopters info for display. This data can be viewed for all projects, a single
* project, or all projects defined within a working group by the working group ID.
*
* Additionally contains the HTML UI pages for users to interact with this data.
*
* @author Martin Lowe
*
*/
...
...
@@ -103,6 +105,7 @@ public class AdoptersResource {
}
@GET
@Produces
(
MediaType
.
TEXT_HTML
)
@Path
(
"project-adopters/{alias}"
)
public
Response
getWorkingGroupSubPage
(
@PathParam
(
"alias"
)
String
workingGroupAlias
)
{
// retrieve the corresponding working group, or return an error
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment