diff options
| author | 2019-11-08 16:35:19 -0600 | |
|---|---|---|
| committer | 2019-11-08 22:35:19 +0000 | |
| commit | ad59e46740ef636b95667615e3881fcee6fbbcb9 (patch) | |
| tree | 2cc829684426f8f0373834efe4bee0513a0544f2 /src/main/resources | |
| parent | Add tinyv2 save/load (diff) | |
| download | enigma-ad59e46740ef636b95667615e3881fcee6fbbcb9.tar.gz enigma-ad59e46740ef636b95667615e3881fcee6fbbcb9.tar.xz enigma-ad59e46740ef636b95667615e3881fcee6fbbcb9.zip | |
Allow multiple services for enigma (#168)
* Allow multiple services for enigma
Signed-off-by: liach <liach@users.noreply.github.com>
* Delete bad dummy
Signed-off-by: liach <liach@users.noreply.github.com>
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/META-INF/services/cuchaz.enigma.api.EnigmaPlugin | 1 | ||||
| -rw-r--r-- | src/main/resources/profile.json | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/src/main/resources/META-INF/services/cuchaz.enigma.api.EnigmaPlugin b/src/main/resources/META-INF/services/cuchaz.enigma.api.EnigmaPlugin new file mode 100644 index 00000000..136a3e78 --- /dev/null +++ b/src/main/resources/META-INF/services/cuchaz.enigma.api.EnigmaPlugin | |||
| @@ -0,0 +1 @@ | |||
| cuchaz.enigma.analysis.BuiltinPlugin | |||
diff --git a/src/main/resources/profile.json b/src/main/resources/profile.json new file mode 100644 index 00000000..e1af4cdb --- /dev/null +++ b/src/main/resources/profile.json | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | { | ||
| 2 | "services": { | ||
| 3 | "jar_indexer": [ | ||
| 4 | { | ||
| 5 | "id": "enigma:enum_initializer_indexer" | ||
| 6 | }, | ||
| 7 | { | ||
| 8 | "id": "enigma:specialized_bridge_method_indexer" | ||
| 9 | } | ||
| 10 | ], | ||
| 11 | "name_proposal": [ | ||
| 12 | { | ||
| 13 | "id": "enigma:enum_name_proposer" | ||
| 14 | }, | ||
| 15 | { | ||
| 16 | "id": "enigma:specialized_method_name_proposer" | ||
| 17 | } | ||
| 18 | ] | ||
| 19 | } | ||
| 20 | } \ No newline at end of file | ||