-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactoring/UIMA-6436-Move-maintainer-docume…
…ntation-from-website-into-maintainer-guide * main: No issue: Remove Jira line from PR template - we do not use Jira anymore. #270 - Update dependencies #270 - Update dependencies #267 - UIMA Log4jLogger_impl not compatible with log4j 2.18.0+ No issue. Adjust jira legacy module version. [maven-release-plugin] prepare for next development iteration [maven-release-plugin] prepare release uimaj-3.3.1 Issue #258: Apache UIMA Java SDK 3.3.1 release Issue #258: Apache UIMA Java SDK 3.3.1 release Issue #258: Apache UIMA Java SDK 3.3.1 release Issue #260: Issues-fixed report for GitHub and Jira Issue #258: Apache UIMA Java SDK 3.3.1 release Issue #258: Apache UIMA Java SDK 3.3.1 release Issue #258: Apache UIMA Java SDK 3.3.1 release
- Loading branch information
Showing
7 changed files
with
144 additions
and
55 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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
**JIRA Ticket:** https://issues.apache.org/jira/browse/UIMA-XXXX | ||
|
||
**What's in the PR** | ||
* ... | ||
|
||
|
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
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
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
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
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,73 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
--> | ||
<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.apache.uima</groupId> | ||
<artifactId>uimaj-parent</artifactId> | ||
<version>3.4.0-SNAPSHOT</version> | ||
<relativePath>../uimaj-parent/pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>uimaj-legacy-jira-report</artifactId> | ||
<packaging>pom</packaging> | ||
|
||
<properties> | ||
<jiraVersion>3.4.0SDK</jiraVersion> | ||
<maven.deploy.skip>true</maven.deploy.skip> | ||
</properties> | ||
|
||
<issueManagement> | ||
<system>Jira</system> | ||
<url>https://issues.apache.org/jira/browse/UIMA</url> | ||
</issueManagement> | ||
|
||
<profiles> | ||
<profile> | ||
<id>apache-release</id> | ||
<build> | ||
<!-- Run jira report --> | ||
<!-- depends on having -DjiraVersion set --> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-changes-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>default-cli</id> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>jira-report</goal> | ||
</goals> | ||
<configuration> | ||
<columnNames>Type,Key,Status,Summary</columnNames> | ||
<outputDirectory>${project.basedir}/../issuesFixed</outputDirectory> | ||
<fixVersionIds>${jiraVersion}</fixVersionIds> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</profile> | ||
</profiles> | ||
</project> |
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