<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.81</version> </parent> <artifactId>p4</artifactId> <version>1.16.1-SNAPSHOT</version> <packaging>hpi</packaging> <name>P4 Plugin</name> <description>Perforce Client plugin for the Jenkins SCM provider.</description> <url>https://github.com/jenkinsci/p4-plugin</url> <properties> <jenkins.version>2.387.3</jenkins.version> </properties> <scm> <connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection> <developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection> <url>https://github.com/jenkinsci/${project.artifactId}-plugin</url> <tag>p4-1.16.0</tag> </scm> <developers> <developer> <id>p4paul</id> <name>Paul Allen</name> <email>pallen@perforce.com</email> </developer> </developers> <repositories> <repository> <id>repo.jenkins-ci.org</id> <url>https://repo.jenkins-ci.org/public/</url> </repository> <repository> <id>artifactory.bnr.perforce.com</id> <name>artifactory.bnr.perforce.com-snapshots</name> <url>https://artifactory.bnr.perforce.com/artifactory/snapshots</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>repo.jenkins-ci.org</id> <url>https://repo.jenkins-ci.org/public/</url> </pluginRepository> </pluginRepositories> <dependencyManagement> <dependencies> <dependency> <groupId>io.jenkins.tools.bom</groupId> <artifactId>bom-2.387.x</artifactId> <version>2543.vfb_1a_5fb_9496d</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>com.perforce</groupId> <artifactId>p4java</artifactId> <version>2024.1.2612262</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.13.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId>com.mashape.unirest</groupId> <artifactId>unirest-java</artifactId> <version>1.4.9</version> <exclusions> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>*</artifactId> </exclusion> <exclusion> <groupId>org.json</groupId> <artifactId>json</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>apache-httpcomponents-client-4-api</artifactId> </dependency> <!-- Jenkins dependencies --> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>credentials</artifactId> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>scm-api</artifactId> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>matrix-project</artifactId> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>structs</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml --> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>command-launcher</artifactId> </dependency> <!-- Workflow dependencies (aggregator) --> <dependency> <groupId>org.jenkins-ci.plugins.workflow</groupId> <artifactId>workflow-step-api</artifactId> </dependency> <dependency> <groupId>org.jenkins-ci.plugins.workflow</groupId> <artifactId>workflow-multibranch</artifactId> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>script-security</artifactId> <version>1341.va_2819b_414686</version> </dependency> <dependency> <groupId>org.jenkins-ci.plugins.workflow</groupId> <artifactId>workflow-scm-step</artifactId> </dependency> <dependency> <groupId>org.jenkins-ci.plugins.workflow</groupId> <artifactId>workflow-api</artifactId> </dependency> <!-- Optional dependencies --> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>multiple-scms</artifactId> <version>0.6</version> <optional>true</optional> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>mailer</artifactId> <optional>true</optional> </dependency> <!-- Test scope dependencies --> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>matrix-auth</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci.plugins.workflow</groupId> <artifactId>workflow-durable-task-step</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci.plugins.workflow</groupId> <artifactId>workflow-basic-steps</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>pipeline-stage-step</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.jenkinsci.plugins</groupId> <artifactId>pipeline-model-definition</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20231013</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> </build> </project>
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#217 | 30514 | Sandeep Kumar |
Update POM for next release. Latest: 1.16.0 |
||
#216 | 30513 | Sandeep Kumar | Update p4jva version to 2024.1.2612262. | ||
#215 | 30467 | Sandeep Kumar | Update dependency version. | ||
#214 | 30263 | Sandeep Kumar | Update minimum supported jenkins version. | ||
#213 | 30260 | Sandeep Kumar | Update Parent Pom. | ||
#212 | 30163 | Sandeep Kumar |
Merge pull request #[203] from jenkinsci/UseBOM Add <dependencyManagement> in the plugin. |
||
#211 | 30149 | Sandeep Kumar |
Update POM for next release. Latest: 1.15.1 |
||
#210 | 30146 | Sandeep Kumar | Update dependencies version. | ||
#209 | 30145 | Sandeep Kumar | Update Json Version to 2023.2.2553500 | ||
#208 | 30004 | Paul Allen |
Jenkins version 2.361.4 Plugin 4.52 Java 11 |
||
#207 | 29918 | Sandeep Kumar |
Update POM for next release. Latest: 1.14.4 |
||
#206 | 29813 | Paul Allen |
Update POM for next release. Latest: 1.14.3 |
||
#205 | 29675 | Paul Allen |
Update POM for next release. Latest: 1.14.2 |
||
#204 | 29672 | Sandeep Kumar |
Merge pull request #180 from skumar7322/UpdateP4JavaVersion Update p4Java version to: 2022.2.2444480 |
||
#203 | 29668 | Sandeep Kumar | Update Json Version to 20230227 | ||
#202 | 29652 | Sandeep Kumar |
Merge pull request #182 from skumar7322/DependencyUpdate22.2 Remove Spring dependencies. |
||
#201 | 29514 | Paul Allen |
Update POM for next release. Latest: 1.14.1 |
||
#200 | 29505 | Paul Allen |
Merge pull request #177 from skumar7322/UpdateP4Java221P2 Update P4 Java Version to "2022.1.2423241" |
||
#199 | 29478 | Paul Allen |
Update POM for next release. Latest: 1.14.0 |
||
#198 | 29476 | Paul Allen |
Merge pull request #174 from skumar7322/UpdateJenkins346 Update Jenkins Version to 2.346.3 |
||
#197 | 29411 | Paul Allen |
Merge pull request #171 from skumar7322/SecurityPatch Security Patch : Update Jenkins Version and Other Dependencies |
||
#196 | 29367 | Paul Allen |
Update POM for next release. Latest: 1.13.3 |
||
#195 | 29366 | Paul Allen |
Update p4java 2022.1.2390907 Resolves file corruption for compressed text+C files over 64K. |
||
#194 | 29324 | Paul Allen |
Update POM for next release. Latest: 1.13.2 |
||
#193 | 29323 | Paul Allen | Failed release. | ||
#192 | 29210 | Paul Allen |
[SECURITY] Use HTTPS to resolve dependencies in Maven Build vuln-fix: Use HTTPS instead of HTTP to resolve deps CVE-2021-26291 a31e790 This fixes a security vulnerability in this project where the `pom.xml` files were configuring Maven to resolve dependencies over HTTP instead of HTTPS. Weakness: CWE-829: Inclusion of Functionality from Untrusted Control Sphere Severity: High CVSSS: 8.1 Detection: CodeQL & OpenRewrite https://public.moderne.io/recipes/org.openrewrite.maven.security.UseHttpsForRepositories Reported-by: Jonathan Leitschuh <Jonathan.Leitschuh@gmail.com> Signed-off-by: Jonathan Leitschuh <Jonathan.Leitschuh@gmail.com> Bug-tracker: JLLeitschuh/security-research#8 Co-authored-by: Moderne <team@moderne.io> |
||
#191 | 29209 | Paul Allen |
Merge pull request #162 from skumar7322/master. Update P4Java Version to 2022.1.2350821 |
||
#190 | 28963 | Paul Allen |
Update POM for next release. Latest: 1.13.0 |
||
#189 | 28960 | Paul Allen | Upgrade p4java 2021.2.2314547 | ||
#188 | 28892 | Paul Allen |
Update P4Java 2021.2.2293546 Fixed parallel sync authetication issue on case insensitive servers. JENKINS-48525 JENKINS-68104. |
||
#187 | 28865 | Paul Allen |
Merge pull request #146 from skumar7322/dependencyUpdate Update Jenkins version to 2.138.4 |
||
#186 | 28773 | Paul Allen |
Update POM for next release. Latest: 1.12.4 |
||
#185 | 28757 | Paul Allen |
Update POM for next release. Latest: 1.12.3 |
||
#184 | 28755 | Paul Allen |
Updating P4Java to 2021.2.2278127 JENKINS-67631 JENKINS-68006 JENKINS-67936 JENKINS-64739 JENKINS-54500 JENKINS-27877 |
||
#183 | 28556 | Paul Allen |
Update POM for next release. Latest: 1.12.2 |
||
#182 | 28555 | Paul Allen | Update p4java patch version 2021.2.2240592 | ||
#181 | 28529 | Paul Allen |
Update POM for next release. Latest: 1.12.1 |
||
#180 | 28512 | Paul Allen |
Update POM for next release. Latest: 1.12.0 |
||
#179 | 28510 | Paul Allen | Update P4Java 2021.2.2234376 | ||
#178 | 28025 | Paul Allen |
Update POM for next release. Latest: 1.11.6 |
||
#177 | 28012 | Paul Allen | Update P4Java to 2021.1.2163843 | ||
#176 | 27768 | Paul Allen | SECURITY-2327 | ||
#175 | 27679 | Paul Allen |
Update POM for next release. Latest: 1.11.4 |
||
#174 | 27500 | Paul Allen |
Update POM for next release. Latest: 1.11.3 |
||
#173 | 27185 | Paul Allen |
Update POM for next release. Latest: 1.11.2 |
||
#172 | 26861 | Paul Allen |
Update POM for next release. Latest: 1.11.1 |
||
#171 | 26820 | Paul Allen |
Merge pull request #121 from KasperFranz/patch-1 Use Github as source of documentation |
||
#170 | 26668 | Paul Allen |
Update POM for next release. Latest: 1.11.0 |
||
#169 | 26666 | Paul Allen | Update P4Java to latest patch 2020.1.1999383 | ||
#168 | 26616 | Paul Allen |
Upgrade P4Java to 2020.1.1989745 Includes fixes for P4IGNORE, reconcile flags and performance improvments for ExtendedFileSpec operations. Fix tests: must set stream owner and user alternative p4ignore. JENKINS-59922 JENKINS-39094 JENKINS-51192 |
||
#167 | 26597 | Paul Allen |
Update POM for next release. Latest: 1.10.14 |
||
#166 | 26588 | Paul Allen |
Update POM for next release. Latest: 1.10.13 |
||
#165 | 26365 | Paul Allen |
Update POM for next release. Latest: 1.10.12 |
||
#164 | 26353 | Paul Allen |
Update POM for next release. Latest: 1.10.11 |
||
#163 | 26307 | Paul Allen |
Update POM for next release. Latest: 1.10.10 |
||
#162 | 26244 | charusheela_b |
Update POM for next release. Latest: 1.10.9 |
||
#161 | 26243 | charusheela_b | Bad release | ||
#160 | 26188 | Paul Allen |
Update POM for next release. Latest: 1.10.7 |
||
#159 | 26186 | Paul Allen | Update p4java 2019.1.1889202 | ||
#158 | 26144 | Paul Allen |
Update POM for next release. Latest: 1.10.6 |
||
#157 | 26143 | Paul Allen |
Update p4java 2019.1.1873579 Entended test delay for slow build machines. JENKINS-59213 JENKINS-59611 |
||
#156 | 26114 | Paul Allen |
Update POM for next release. Latest: 1.10.5 |
||
#155 | 26102 | Paul Allen |
Update POM for next release. Latest: 1.10.4 |
||
#154 | 26095 | Paul Allen |
Merge pull request #109 from daniel-beck-bot/https-urls-pom Use HTTPS URLs in pom.xml |
||
#153 | 25852 | Paul Allen |
Update POM for next release. Latest: 1.10.3 |
||
#152 | 25806 | Paul Allen |
Update POM for next release. Latest: 1.10.2 |
||
#151 | 25801 | Paul Allen |
Update p4java to 2019.1.1827134 Fix various symlink issue. |
||
#150 | 25777 | Paul Allen |
Update POM for next release. Latest: 1.10.1 |
||
#149 | 25758 | Paul Allen |
P4Java update 2019.1.1822775 #1822014 (Bug #099164) Support Ditto '&' mappings in client view. JENKINS-58109 #1821933 (Bug #099149) Resolve symlink detection issue when using reconcile. JENKINS-58048 JENKINS-57945 JENKINS-57955 #1815000 (Bug #099165) Support reconcile streaming functionality |
||
#148 | 25657 | Paul Allen |
Update POM for next release. Latest: 1.10.0 |
||
#147 | 25632 | Paul Allen |
Update P4Java 2019.1.1802476 Increase timings on PollingTest for slow test machines. |
||
#146 | 25472 | Paul Allen |
Update POM for next release. Latest: 1.9.7 |
||
#145 | 25123 | Paul Allen |
Added Pipeline Job support and tests for declarative and scripted. JENKINS-39107 |
||
#144 | 25020 | Paul Allen |
Update POM for next release. Latest: 1.9.6 |
||
#143 | 24950 | Paul Allen |
Update POM for next release. Latest: 1.9.5 |
||
#142 | 24843 | Paul Allen |
Update POM for next release. Latest: 1.9.4 |
||
#141 | 24814 | Paul Allen |
Update POM for next release. Latest: 1.9.3 |
||
#140 | 24778 | Paul Allen |
Remove unused commons-compress dependancy. Resolve CVE-2018-11771 threat warning. |
||
#139 | 24672 | Paul Allen |
Update POM for next release. Latest: 1.9.2 |
||
#138 | 24663 | Paul Allen |
Update POM for next release. Latest: 1.9.1 |
||
#137 | 24642 | Paul Allen |
Update POM for next release. Latest: 1.9.0 |
||
#136 | 24622 | Paul Allen | Added 'command-launcher' for Jenkins 2.89.1 release and greater. | ||
#135 | 24529 | Paul Allen |
Swarm Commit Event support, refactoring and test. JENKINS-52605 (Fix doc in 'Includes' help bubble for MultiBranch) JENKINS-52066 (Improve Swarm Commit and Branch Event support) |
||
#134 | 24488 | Paul Allen |
Min version Jenkins 2.60.3 Upgrade dependencies and move to Java 8. |
||
#133 | 24475 | Paul Allen |
Update POM for next release. Latest: 1.8.15 |
||
#132 | 24410 | Paul Allen |
Update POM for next release. Latest: 1.8.14 |
||
#131 | 24360 | Paul Allen |
Update POM for next release. Latest: 1.8.12 |
||
#130 | 24030 | Paul Allen |
Update POM for next release. Latest: 1.8.10 |
||
#129 | 23876 | Paul Allen |
Update POM for next release. Latest: 1.8.9 |
||
#128 | 23807 | Paul Allen |
Update POM for next release. Latest: 1.8.8 |
||
#127 | 23806 | Paul Allen |
Update P4Java 2018.1.1638495 Digest calculation for UTF8 files. JENKINS-49955 |
||
#126 | 23745 | Paul Allen |
Update POM for next release. Latest: 1.8.7 |
||
#125 | 23744 | Paul Allen |
Update P4Java to 2017.2.1635107 Fix for ShiftJIS charset JENKINS-49916 Reconcile -w cleanup of symlinks JENKINS-49393 |
||
#124 | 23653 | Paul Allen |
Update POM for next release. Latest: 1.8.6 |
||
#123 | 23606 | Paul Allen |
Update POM for next release. Latest: 1.8.5 |
||
#122 | 23544 | Paul Allen | Update dependancies to latest supported version for Jenkins 1.642.3 | ||
#121 | 23426 | Paul Allen |
Update POM for next release. Latest: 1.8.4 |
||
#120 | 23403 | Paul Allen |
Update P4Java 2017.2.1601181 P4Java fix to throw p4 print warnings used during lightweight checkout. |
||
#119 | 23286 | Paul Allen |
Update POM for next release. Latest: 1.8.3 |
||
#118 | 23259 | Paul Allen |
Update POM for next release. Latest: 1.8.2 |
||
#117 | 23193 | Paul Allen |
Update POM for next release. Latest: 1.8.1 |
||
#116 | 23066 | Paul Allen |
Update POM for next release. Latest: 1.8.0 |
||
#115 | 22978 | Paul Allen |
Update POM for next release. Latest: 1.7.7 |
||
#114 | 22971 | Paul Allen |
Update p4java 2017.2.1577651. Server Property sequence fix (used by Swarm URL). |
||
#113 | 22954 | Paul Allen |
Update POM for next release. Latest: 1.7.6 |
||
#112 | 22952 | Paul Allen | POM commons-lang3:3.5 used at runtime | ||
#111 | 22945 | Paul Allen | POM update - remove exclusions and added dependencies. | ||
#110 | 22942 | Paul Allen |
POM Update. Remove dependancy on workflow-aggregator and re-add 'test' dependancies for pipeline/workflow. |
||
#109 | 22928 | Paul Allen | Swarm approve step for Pipeline and FreeStyle jobs. | ||
#108 | 22840 | Paul Allen |
Merge pull request #49 from aosterkamp/master add support for "P4Trigger" declarative pipeline trigger |
||
#107 | 22824 | Paul Allen |
Update POM for next release. Latest: 1.7.5 |
||
#106 | 22815 | Paul Allen |
Provide repo with connection.getCommitObject(). The `p4 graph cat-file commit` requires `super` level access if the repo name is not provided. JENKINS-46595 |
||
#105 | 22796 | Paul Allen | Update plugin POM 2.33 | ||
#104 | 22704 | Paul Allen |
Update POM for next release. Latest: 1.7.4 |
||
#103 | 22637 | Paul Allen |
Update POM for next release. Latest: 1.7.3 |
||
#102 | 22632 | Paul Allen |
Update P4Java 2017.2.1535715 Unicode buffer fixes for syncing UFT16 files. JENKINS-45453 JENKINS-45580 |
||
#101 | 22558 | Paul Allen |
Update POM for next release. Latest: 1.7.2 |
||
#100 | 22557 | Paul Allen | Downgraded due to hpi:run error in parent pom. | ||
#99 | 22555 | Paul Allen |
Update P4Java 2017.2.1531685 Patch for parallel sync - thread authentication on Edge/Commit servers. |
||
#98 | 22547 | Paul Allen |
P4Java patch 2017.2.1530813. Update parent POM 2.30 and checkpoints for parallel test. |
||
#97 | 22489 | Paul Allen |
Update POM for next release. Latest: 1.7.1 |
||
#96 | 22396 | Paul Allen |
MultiBranch support for Perforce Swarm Reviews. A work in progress - adds Swarm API support to find branches and reviews from a Swarm project. #review-22354 |
||
#95 | 22349 | Paul Allen |
Parallel Sync using P4Java. Update to P4Java 2017.2; using RPC level parallel sync and threaded within the JVM. Native parallel sync no longer requires a 'p4d' binary. |
||
#94 | 22181 | Paul Allen |
Update POM for next release. Latest: 1.7.0 |
||
#93 | 22128 | Paul Allen |
Helix Graph support for Jenkins. JENKINS-40354 |
||
#92 | 22124 | Paul Allen |
Update POM for next release. Latest: 1.6.2 |
||
#91 | 22044 | Paul Allen |
Update POM for next release. Latest: 1.6.1 |
||
#90 | 21926 | Paul Allen |
Update POM for next release. Latest: 1.6.0 |
||
#89 | 21865 | Paul Allen | Update P4Java to 2016.1.1499206 | ||
#88 | 21794 | Paul Allen |
Merge pull request #39 from Dohbedoh/JENKINS-34825 Jenkins 34825 |
||
#87 | 21783 | Paul Allen |
Update POM for next release. Latest: 1.5.1 |
||
#86 | 21782 | Paul Allen |
Update POM for next release. Latest: 1.5.0 (Bad deployment - do not use) |
||
#85 | 21758 | Paul Allen |
Merge pull request #38 from jenkinsci/dev scm-api 2.0.2 updates |
||
#84 | 21669 | Paul Allen |
Update POM for next release. Latest: 1.4.14 |
||
#83 | 21668 | Paul Allen | Identifier fix by adding filtering to resources. | ||
#82 | 21661 | Paul Allen | Expand Version and ID in Server log. | ||
#81 | 21464 | Paul Allen |
Update POM for next release. Latest: 1.4.13 |
||
#80 | 21375 | Paul Allen |
Update POM for next release. Latest: 1.4.12 |
||
#79 | 21260 | Paul Allen |
Update POM for next release. Latest: 1.4.11 |
||
#78 | 21150 | Paul Allen |
Update POM for next release. Latest: 1.4.10 |
||
#77 | 21052 | Paul Allen |
Update POM for next release. Latest: 1.4.9 |
||
#76 | 20875 | Paul Allen |
Update POM for next release. Latest: 1.4.8 |
||
#75 | 20786 | Paul Allen | Upgrade p4java 2015.2.1365273 | ||
#74 | 20784 | Paul Allen |
Update POM for next release. Latest: 1.4.7 |
||
#73 | 20299 | Paul Allen |
Update POM for next release. Latest: 1.4.6 |
||
#72 | 20295 | Paul Allen |
Remove distributionManagement. Defined in parent POM |
||
#71 | 20226 | Paul Allen |
Support for Multiple SCMs Plugin. Optional dependency on multiple-scms and helper method for safely casting SCM object to PerforceSCM instance, especially in the scenario where the SCM object is a MultiSCM instance. JENKINS-32064 |
||
#70 | 20179 | Paul Allen | Javadoc fixes for java 8 builds. | ||
#69 | 20039 | Paul Allen |
Update POM for next release. Latest: 1.4.4 |
||
#68 | 19891 | Paul Allen |
Update POM for next release. Latest: 1.4.3 |
||
#67 | 19832 | Paul Allen |
Update POM for next release. Latest: 1.4.2 |
||
#66 | 19713 | Paul Allen |
Update POM for next release. Latest: 1.4.1 |
||
#65 | 19594 | Paul Allen |
Update POM for next release. Latest: 1.4.0 |
||
#64 | 19578 | Paul Allen | Upgrade plugin to 2.9 | ||
#63 | 19576 | Paul Allen |
Update POM for next release. Latest: 1.3.10 |
||
#62 | 19385 | Paul Allen |
Update POM for next release. Latest: 1.3.9 |
||
#61 | 19357 | Paul Allen |
Populate class support for DSL p4sync. JENKINS-34318 |
||
#60 | 18890 | Paul Allen |
Update POM for next release. Latest: 1.3.8 |
||
#59 | 18744 | Paul Allen | Added optional dependancy for Mailer 1.16 | ||
#58 | 18212 | Paul Allen |
Update POM for next release. Latest: 1.3.7 |
||
#57 | 17266 | Paul Allen |
Update POM for next release. Latest: 1.3.6 |
||
#56 | 16793 | Paul Allen |
Upgrade p4java 15.2 Fix for 2G limit. JENKINS-25364 |
||
#55 | 16757 | Paul Allen |
Update POM for next release. Latest: 1.3.5 |
||
#54 | 16617 | Paul Allen |
Update POM for next release. Latest: 1.3.4 |
||
#53 | 16538 | Paul Allen |
Update POM for next release. Latest: 1.3.3 |
||
#52 | 16188 | Paul Allen |
Update POM for next release. Latest: 1.3.2 |
||
#51 | 15695 | Paul Allen |
Update POM for next release. Latest: 1.3.1 |
||
#50 | 15557 | Paul Allen |
Simplification of ReviewNotifier Remove Apache HttpClient dependancy and separate setup environment step. Notification triggered onCompleted event, called after a build is completed. |
||
#49 | 15516 | Paul Allen |
Update POM for next release. Latest: 1.3.0 |
||
#48 | 15515 | Paul Allen | Update P4Java to 2015.1.1210288 | ||
#47 | 15394 | Paul Allen |
Workflow-DSL functionality. Tested workflow DSL against 1.596.1 older functionality tested against 1.580.1 @sven_erik_knop |
||
#46 | 15363 | Paul Allen |
Update POM and release notes for next release. Latest: 1.2.7 |
||
#45 | 15328 | Paul Allen |
Update POM for next release. Latest: 1.2.6 |
||
#44 | 14914 | Paul Allen |
Update POM for next release. Latest: 1.2.5 |
||
#43 | 13955 | Paul Allen |
Update POM for next release. Latest: 1.2.4 |
||
#42 | 13800 | Paul Allen | Updated P4Java to 15.1 | ||
#41 | 13647 | Paul Allen |
Update POM for next release. Latest: 1.2.3 |
||
#40 | 12979 | Paul Allen |
Update POM for next release. Latest: 1.2.2 |
||
#39 | 12417 | Paul Allen |
Extend Jenkins support back to 1.568 - remove @Override annotations - remove jenkins.security.Roles |
||
#38 | 12200 | Paul Allen |
Update POM for next release. Latest: 1.2.1 |
||
#37 | 12157 | Paul Allen | minor - serialisation cleanup and pin p4java in the POM | ||
#36 | 11942 | Paul Allen |
Update POM for next release. Latest: 1.2.0 |
||
#35 | 11941 | Paul Allen |
Minor updates. Update credentials to 1.22 and remove old p4java snapshot repo. Includes name refactor (project -> job) |
||
#34 | 11626 | Paul Allen |
Workflow support. - Updated the plugin to the latest LTS Jenkins release 1.580.3. - Updated P4Java to 2014.1 Tested with simple ‘static’ workspace, there may be limitations with ‘manual’ workspace. Plan to add DSL support by extending the SCMStep class. #review-11537 JENKINS-24206 |
||
#33 | 11582 | Paul Allen |
Update POM for next release. Latest: 1.1.4 |
||
#32 | 11491 | Paul Allen |
Update POM for next release. Latest: 1.1.3 |
||
#31 | 11370 | Paul Allen |
Update POM for next release. Latest: 1.1.2 |
||
#30 | 11339 | Paul Allen |
Update POM for next release. Latest: 1.1.1 |
||
#29 | 11308 | Paul Allen |
Update POM for next release. Latest: 1.1.0 |
||
#28 | 11157 | Paul Allen |
Remove `@NameWith` annotation The 1.19 Credential release fixes the issue. JENKINS-25682 |
||
#27 | 11105 | Paul Allen |
Update POM for next release. Latest: 1.0.23 |
||
#26 | 11033 | Paul Allen |
Update POM for next release. Latest: 1.0.22 |
||
#25 | 10897 | Paul Allen |
Update POM for next release. Latest: 1.0.21 |
||
#24 | 10857 | Paul Allen |
Update POM for next release. 1.0.20 |
||
#23 | 10856 | Paul Allen | POM Update url + release ver | ||
#22 | 10855 | Paul Allen | Update POM for next release. | ||
#21 | 10803 | Paul Allen | Update POM for next release. | ||
#20 | 10685 | Paul Allen | Update POM for next release. | ||
#19 | 10512 | Paul Allen | Update POM for next release. | ||
#18 | 10171 | Paul Allen | Update POM for next release. | ||
#17 | 10032 | Paul Allen | Update POM for next release. | ||
#16 | 10011 | Paul Allen | Update POM for next release | ||
#15 | 9983 | Paul Allen | Update POM for next release. | ||
#14 | 9852 | Paul Allen | Update POM for next release | ||
#13 | 9851 | Paul Allen | Merging using p4-jenkins | ||
#12 | 9817 | Paul Allen | Update POM for next release | ||
#11 | 9802 | Paul Allen | Update to 1.0.9 for next release. | ||
#10 | 9785 | Paul Allen | POM update for next release | ||
#9 | 9781 | Paul Allen | Update for next release. | ||
#8 | 9769 | Paul Allen | Copying using p4-jenkins | ||
#7 | 9739 | Paul Allen | Update POM for release 1.0.5 | ||
#6 | 9722 | Paul Allen | Copying using p4-jenkins | ||
#5 | 9719 | Paul Allen | Release 1.0.4 -- local path syntax | ||
#4 | 9704 | Paul Allen | Tidy up README and pushed out a new release 1.0.3 for null/empty params | ||
#3 | 9698 | Paul Allen | [maven-release-plugin] prepare for next development iteration | ||
#2 | 9692 | Paul Allen |
POM update for p4java SNAPSHOT p4java now temporally in http://repo.jenkins-ci.org/snapshots/ |
||
#1 | 9690 | Paul Allen |
[Branching using p4-jenkins] Release 1.0.1 |
||
//guest/paul_allen/dev/p4-jenkins/p4-client/pom.xml | |||||
#14 | 9688 | Paul Allen | Update version in POM | ||
#13 | 9682 | Paul Allen | Modifed pom to load the local jar for p4java. | ||
#12 | 9675 | Paul Allen | update to pom to use 'addjars-maven-plugin' | ||
#11 | 9673 | Paul Allen | Update developer ID to p4paul | ||
#10 | 9672 | Paul Allen | Refactor name from 'p4_client' to 'p4'. | ||
#9 | 9668 | Paul Allen | Test round trip from GitHub | ||
#8 | 8910 | Paul Allen |
Update description details and plugin version. Added dependency on p4-java 2013.2. Will need manual add to .m2 repo: mvn install:install-file -Dfile=p4java-2013.2.788582.jar \ -DgroupId=com.perforce \ -DartifactId=p4java \ -Dversion=2013.2.788582 \ -Dpackaging=jar |
||
#7 | 8814 | Paul Allen |
Removed p4-java 13.1 from POM -- need 13.2 fixes for Jar to avoid InvalidJarIndexException error. Hope to remove jar when uploaded to Maven. |
||
#6 | 8762 | Paul Allen |
Console Ouptut logging for SCM build steps. - Removed SLF4J and used old style logger (matching Jenkins) - Set Client Host filed to null, Jenkins sometimes gives an IP address. - Test p4java setps in SCM tasks for success(true/false) |
||
#5 | 8758 | Paul Allen | Downgraded org.jenkins-ci.plugins to 1.509.3 and now all built-in test pass. | ||
#4 | 8715 | Paul Allen |
#review-8716 [Basic Swarm-Jenkins cycle DONE] Support Job's build notification and then POST's the pass/fail call-back URLs to Swarm. |
||
#3 | 8629 | Paul Allen |
Added p4java with connection/authorisation helper classes. Included SSL support and detection of Unicode servers. |
||
#2 | 8611 | Paul Allen | Basic implementation of Credentials Store | ||
#1 | 8598 | Paul Allen | Experimentation with data binding for Jelly files and ExtensionPoint/Descriptor |