Skip to content

Commit

Permalink
Refactor plugin structure to modern style. (#41)
Browse files Browse the repository at this point in the history
* Refactor plugin structure to modern style.

* Update Changelog.
  • Loading branch information
reynoldsalec authored Nov 22, 2023
1 parent 0b8dc4b commit 5a702d5
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## v0.9.0 - [November 2023](https://github.com/lando/solr/releases/tag/v0.9.0)
* Added support for Solr 9.x [#40](https://github.com/lando/solr/pull/40)
* Isolated testing to Solr [#40](https://github.com/lando/solr/pull/40)
* Refactored plugin structure to the modern style [#41](https://github.com/lando/solr/pull/41)

## v0.8.0 - [July 3, 2023](https://github.com/lando/solr/releases/tag/v0.8.0)
* Removed bundle-dependencies and version-bump-prompt from plugin.
Expand Down
3 changes: 2 additions & 1 deletion services/solr/builder.js → builders/solr.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

// Modules
const _ = require('lodash');
const path = require('path');

// Versions
const supportedVersions = [
Expand Down Expand Up @@ -152,7 +153,7 @@ module.exports = {
legacy: ['6.6', '6', '5.5', '5', '4.10', '4', '3.6', '3'],
patchesSupported: true,
command: '/start-solr.sh',
confSrc: __dirname,
confSrc: path.resolve(__dirname, '..', 'config'),
core: 'lando',
dataDir: '/opt/solr/server/solr/mycores',
moreHttpPorts: ['8983'],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 5a702d5

Please sign in to comment.