Skip to content

Commit

Permalink
Fix for version increment error
Browse files Browse the repository at this point in the history
  • Loading branch information
scottslewis committed Dec 23, 2024
1 parent 06d6e4a commit f7f0134
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.provider.filetransfer.httpclientjava;singleton:=true
Bundle-Version: 2.0.0.qualifier
Bundle-Version: 2.1.0.qualifier
Bundle-Vendor: %plugin.provider
Bundle-Localization: plugin
Automatic-Module-Name: org.eclipse.ecf.provider.filetransfer.httpclientjava
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<relativePath>../../../</relativePath>
</parent>
<artifactId>org.eclipse.ecf.provider.filetransfer.httpclientjava</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void removedService(ServiceReference<HttpClient> reference, HttpClient se
private static final String USE_SHARED_CLIENT_DEFAULT = "true"; //$NON-NLS-1$

/**
* @since 2.0
* @since 2.1
*/
public static final String USE_COOKIE_STORE = PLUGIN_ID + ".cookieStore"; //$NON-NLS-1$

Expand Down Expand Up @@ -220,7 +220,7 @@ public boolean isUseSharedClient() {
}

/**
* @since 2.0
* @since 2.1
*/
public boolean isUseCookieStore() {
return useCookieStore;
Expand All @@ -247,7 +247,7 @@ public void log(IStatus status) {
}

/**
* @since 2.0
* @since 2.1
*/
public synchronized SSLContextFactory getSSLContextFactory() {
if (sslContextFactoryTracker == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ public interface HttpClientOptions {
String FORCE_NTLM_PROP = "org.eclipse.ecf.provider.filetransfer.httpclient4.options.ForceNTLMProxy"; //$NON-NLS-1$

/**
* @since 2.0
* @since 2.1
*/
String HTTPCLIENT_SSLCONTEXT_PROTOCOL = System.getProperty("org.eclipse.ecf.provider.filetransfer.httpclient.sslcontext.protocol"); //$NON-NLS-1$

/**
* @since 2.0
* @since 2.1
*/
String HTTPCLIENT_SSLCONTEXT_PROVIDER = System.getProperty("org.eclipse.ecf.provider.filetransfer.httpclient.sslcontext.provider"); //$NON-NLS-1$
}

0 comments on commit f7f0134

Please sign in to comment.