Skip to content

Commit

Permalink
Merge pull request #2 from jetty/new-parent
Browse files Browse the repository at this point in the history
Use new parent, add dependdabot and GHA
  • Loading branch information
joakime authored Feb 3, 2024
2 parents 6d61936 + fe9fe5e commit 37fd0cc
Show file tree
Hide file tree
Showing 11 changed files with 82 additions and 19 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
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"
20 changes: 20 additions & 0 deletions .github/stale.yml
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.
14 changes: 14 additions & 0 deletions .github/workflows/maven.yml
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" ]'
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target/
*.iml
15 changes: 15 additions & 0 deletions license-header.txt
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.
========================================================================
30 changes: 16 additions & 14 deletions pom.xml
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>
Expand All @@ -31,4 +34,3 @@
</dependencies>

</project>

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// ========================================================================
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// ========================================================================
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// ========================================================================
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// ========================================================================
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// ========================================================================
// ========================================================================
// Copyright (c) 1995-2014 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
Expand Down

0 comments on commit 37fd0cc

Please sign in to comment.