Skip to content

Commit

Permalink
Disabled license and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pgwizdalski-na committed Jan 13, 2017
1 parent ac2eb62 commit 67fe9d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.networkedassets.atlassian.bitbucket</groupId>
<artifactId>personalrepos</artifactId>
<version>1.0.9</version>
<version>1.0.10</version>
<organization>
<name>NetworkedAssets</name>
<url>http://www.networkedassets.com/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public boolean isLicenseValid() {
Option<PluginLicense> licenseOption = pluginLicenseManager.getLicense();
if (!licenseOption.isDefined()) {
log.debug("Checking license validity, license is invalid");
return false;
return true;
}
PluginLicense pluginLicense = licenseOption.get();
boolean licenseValid = pluginLicense.isValid();
Expand All @@ -46,7 +46,7 @@ public LicenseStatus getLicenseStatus() {
Option<LicenseError> error = pluginLicense.getError();
licenseStatus = LicenseStatus.valueOf(error.get().name());
} else {
licenseStatus = LicenseStatus.NO_LICENSE;
licenseStatus = LicenseStatus.OK;
}
log.debug("License status {} ", licenseStatus.name());
return licenseStatus;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/atlassian-plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<param name="vendor-icon">images/vendorIcon.jpg</param>


<param name="atlassian-licensing-enabled">true</param>
<param name="atlassian-licensing-enabled">false</param>

<param key="post-install-url" name="post.install.url">/plugins/servlet/personalrepos/admin
</param>
Expand Down

0 comments on commit 67fe9d3

Please sign in to comment.