Skip to content

Commit

Permalink
Renames plugin name (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
damianszczepanik authored Oct 14, 2024
1 parent 76e337a commit 1c3b79f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 13 deletions.
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?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">
<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.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.88</version>
<relativePath />
<relativePath/>
</parent>

<licenses>
Expand All @@ -17,14 +18,14 @@
</licenses>

<artifactId>Office-365-Connector</artifactId>
<name>Office 365 Connector</name>
<name>Office 365 Connector / Power Automate workflows</name>
<version>${revision}${changelist}</version>
<packaging>hpi</packaging>
<description>This plugin sends Job notifications to JenkinsCI Office 365 Connector.</description>
<url>https://github.com/jenkinsci/office-365-connector-plugin</url>

<properties>
<revision>4.22.1</revision>
<revision>5.0.0</revision>
<changelist>-SNAPSHOT</changelist>
<jenkins.version>2.414.3</jenkins.version>

Expand Down
12 changes: 11 additions & 1 deletion src/main/resources/index.jelly
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
<?jelly escape-by-default='true'?>
<div>
Sends jobs status notifications to Microsoft Teams and Outlook (Office 365).
Sends message from Jenkins job to Microsoft Teams using Power Automate workflows (previously <strike>Office 365
connectors</strike>).
This version introduces possibility to user Power Automate.
<b>Office 365 connectors
<a href="https://devblogs.microsoft.com/microsoft365dev/retirement-of-office-365-connectors-within-microsoft-teams/">
are retiring soon.
</a>
</b>
<p style="color:red">Use this new version carefully migrate and test before deploying on production.
New plugin version may not support with old configuration.
</p>
</div>
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:section title="Office 365 Connector">
<f:section title="Office 365 Connector / Power Automate workflows">
<f:entry title="URL" field="globalUrl">
<f:textbox/>
</f:entry>
<f:entry title="Name" field="globalName">
<f:textbox/>
</f:entry>
<f:textbox/>
</f:entry>
<f:entry title="Name" field="globalName">
<f:textbox/>
</f:entry>
</f:section>
</j:jelly>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form">
<f:section title="Office 365 Connector">
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:section title="Office 365 Connector / Power Automate workflows">
<f:entry title="Notification webhooks" field="webhooks">
<f:repeatableProperty field="webhooks" add="Add Webhook">
</f:repeatableProperty>
Expand Down

0 comments on commit 1c3b79f

Please sign in to comment.