Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update prod #3740

Merged
merged 22 commits into from
May 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
dcc053a
Merge pull request #3736 from OpenLiberty/prod
natalie-bernhard May 15, 2024
9873cb5
Removed docs.sh
SteveSamJacob19 May 7, 2024
765c99d
Merge pull request #3732 from OpenLiberty/docs.sh_del
natalie-bernhard May 15, 2024
b863900
Edited max width
SteveSamJacob19 May 2, 2024
2c9d6d9
Merge pull request #3735 from OpenLiberty/bug_multitag
natalie-bernhard May 15, 2024
183adea
Fixed jumping of content
SteveSamJacob19 Mar 11, 2024
121c91f
Some edit
SteveSamJacob19 Mar 11, 2024
b725d46
reduce feature doc files
natalie-bernhard Mar 8, 2024
6d292b8
undo original commit changes
natalie-bernhard Mar 11, 2024
16cb292
Fixed jumping of content
SteveSamJacob19 Mar 11, 2024
a8421a6
Revert "Some more edits"
natalie-bernhard Mar 18, 2024
a2114b8
Revert "Fixed jumping of content"
natalie-bernhard Mar 18, 2024
8f88429
Revert "Revert "Fixed jumping of content""
natalie-bernhard Mar 25, 2024
7ac027b
Revert "Revert "Some more edits""
natalie-bernhard Mar 25, 2024
fb3c03a
Revert "Fixed jumping of content"
natalie-bernhard Mar 25, 2024
3a6ab13
Fixed interactive guide toc
SteveSamJacob19 Mar 28, 2024
5ed3f58
Revert "Fixed cutting of interactive guide toc content"
natalie-bernhard Apr 2, 2024
4a8fd65
to update plugin versions programatically
navaneethsnair1 Apr 19, 2024
d143d0b
changes in build.js
navaneethsnair1 Apr 19, 2024
6d9fa06
Revert "Plugin versions"
natalie-bernhard May 13, 2024
9f21efd
Added newest cer
SteveSamJacob19 May 15, 2024
eb952f7
Merge pull request #3739 from OpenLiberty/v2_pem_cer
natalie-bernhard May 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "Plugin versions"
  • Loading branch information
natalie-bernhard committed May 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 6d9fa065422ca31fe6046bf816e298712671c2e0
17 changes: 0 additions & 17 deletions src/main/content/_assets/js/builds.js
Original file line number Diff line number Diff line change
@@ -24,7 +24,6 @@ var starter_domain =
isNotProdSite() ? 'https://starter-staging.rh9j6zz75er.us-east.codeengine.appdomain.cloud' : 'https://start.openliberty.io';
var starter_info_url = starter_domain + '/api/start/info';
var starter_submit_url = starter_domain + '/api/start';
var starter_plugin_url= starter_domain+ '/api/start/plugin-versions';
var failed_builds_request = false;

// Controls what build zips are exposed on openliberty.io. This will need to be updated
@@ -1596,19 +1595,3 @@ $(window).on('load', function () {
}
});
});

$(window).on('load', function () {
$.ajax({
url: starter_plugin_url,
type: 'GET',
dataType: 'json',
success: function(data) {
$('#maven_version').text(data.mavenVersion);
$('#gradle_version').text(data.gradleVersion);
},
error: function(error) {
console.error('Error fetching Maven and Gradle plugin versions:', error);
}
});
});

6 changes: 4 additions & 2 deletions src/main/content/start.html
Original file line number Diff line number Diff line change
@@ -15,7 +15,9 @@
{% endif %}
{% capture release_blog %}{% t start.release_blog %}{% endcapture %}
<script>

var release_blog = '{{release_blog}}';

</script>
<!-- INTRO -->
<div id="downloads_intro_background">
@@ -160,7 +162,7 @@ <h2 id="getOL" class="section_title"><a class="anchor" href="#getOL"></a>{% t st
<div class="code_block_wrapper" title="Code block">
<div class="copied_confirmation">Copied to clipboard</div>
<input type="image" class="copy_to_clipboard" src="/img/guides_copy_button.svg" alt="Copy code block" title="Copy code block"/>
<pre class="code_container">&lt;plugin&gt;<br> &lt;groupId&gt;io.openliberty.tools&lt;/groupId&gt;<br> &lt;artifactId&gt;liberty-maven-plugin&lt;/artifactId&gt;<br> &lt;version&gt;<span class="latest_version" id="maven_version"></span>&lt;/version&gt;<br>&lt;/plugin&gt;</pre>
<pre class="code_container">&lt;plugin&gt;<br> &lt;groupId&gt;io.openliberty.tools&lt;/groupId&gt;<br> &lt;artifactId&gt;liberty-maven-plugin&lt;/artifactId&gt;<br> &lt;version&gt;<span class="latest_version">3.10.2</span>&lt;/version&gt;<br>&lt;/plugin&gt;</pre>
</div>
<p>
{% t start.add_to_existing_app.maven_guide_text %}
@@ -175,7 +177,7 @@ <h2 id="getOL" class="section_title"><a class="anchor" href="#getOL"></a>{% t st
<div class="code_block_wrapper" title="Code block">
<div class="copied_confirmation">Copied to clipboard</div>
<input type="image" class="copy_to_clipboard" src="/img/guides_copy_button.svg" alt="Copy code block" title="Copy code block"/>
<pre class="code_container">buildscript { <br> repositories { <br> mavenCentral()<br> }<br> dependencies {<br> classpath 'io.openliberty.tools:liberty-gradle-plugin:'<span class="latest_version" id="gradle_version"></span>'<br> }<br>}</pre>
<pre class="code_container">buildscript { <br> repositories { <br> mavenCentral()<br> }<br> dependencies {<br> classpath 'io.openliberty.tools:liberty-gradle-plugin:'<span class="latest_version">3.8.2</span>'<br> }<br>}</pre>
</div>
<p>The plugin also needs to be applied in the build file in order to be utilized.</p>
<div class="code_block_wrapper" title="Code block">