-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from jetty/new-parent
Use new parent, add dependdabot and GHA
- Loading branch information
Showing
11 changed files
with
82 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 365 | ||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 30 | ||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- Pinned | ||
- Security | ||
- Specification | ||
- TCK | ||
# Label to use when marking an issue as stale | ||
staleLabel: Stale | ||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue has been automatically marked as stale because it has been a | ||
full year without activity. It will be closed if no further activity occurs. | ||
Thank you for your contributions. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: > | ||
This issue has been closed due to it having no activity. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Verify | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
name: Verify | ||
uses: jetty/.github/.github/workflows/maven-ci.yml@main | ||
with: | ||
jdk-matrix: '[ "11", "17" ]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
target/ | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
======================================================================== | ||
Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd. | ||
------------------------------------------------------------------------ | ||
All rights reserved. This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License v1.0 | ||
and Apache License v2.0 which accompanies this distribution. | ||
|
||
The Eclipse Public License is available at | ||
http://www.eclipse.org/legal/epl-v10.html | ||
|
||
The Apache License v2.0 is available at | ||
http://www.opensource.org/licenses/apache2.0.php | ||
|
||
You may elect to redistribute this code under either of these licenses. | ||
======================================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
<parent> | ||
<artifactId>jetty-toolchain</artifactId> | ||
<groupId>org.eclipse.jetty.toolchain</groupId> | ||
<version>1.7</version> | ||
<relativePath>../jetty-toolchain</relativePath> | ||
</parent> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||
|
||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.eclipse.jetty</groupId> | ||
<artifactId>jetty-parent</artifactId> | ||
<version>26</version> | ||
</parent> | ||
<artifactId>jetty-perf-helper</artifactId> | ||
<packaging>jar</packaging> | ||
<version>1.0.8-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<name>Jetty Toolchain :: Performance Helper</name> | ||
<description>Performance/Benchmark Support for Jetty</description> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/eclipse/jetty.toolchain.git</connection> | ||
<developerConnection>scm:git:ssh://[email protected]/eclipse/jetty.toolchain.git</developerConnection> | ||
<url>https://github.com/eclipse/jetty.toolchain/tree/master/jetty-perf-helper</url> | ||
<connection>scm:git:https://github.com/jetty/${jetty.git.repo}.git</connection> | ||
<developerConnection>scm:git:[email protected]:jetty/${jetty.git.repo}.git</developerConnection> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/jetty/${jetty.git.repo}</url> | ||
</scm> | ||
<properties> | ||
<jdk.version.minimum>11</jdk.version.minimum> | ||
<jetty.git.repo>jetty-perf-helper</jetty.git.repo> | ||
<license.header.resource>license-header.txt</license.header.resource> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
|
@@ -31,4 +34,3 @@ | |
</dependencies> | ||
|
||
</project> | ||
|
2 changes: 1 addition & 1 deletion
2
src/main/java/org/eclipse/jetty/toolchain/perf/HistogramSnapshot.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/org/eclipse/jetty/toolchain/perf/MeasureConverter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/org/eclipse/jetty/toolchain/perf/MeasureRecorder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/org/eclipse/jetty/toolchain/perf/PlatformMonitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/org/eclipse/jetty/toolchain/perf/PlatformTimer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters