Acdc RocknRoll
Acdc RocknRoll

Reputation: 687

play 1.2.5 using modules for each applicarion individual

I am using heavily the Crud-Module in different projects. I activate the module by writing "play -> crud" in the dependency yaml-file. Unfortunetately the Message.properties are all the same.

How can i install an own Module for every application ?

Upvotes: 1

Views: 70

Answers (2)

emt14
emt14

Reputation: 4896

Actually I believe CRUD module should pick up the messages file from each application conf directory. Have you try to override the CRUD messages from your application messages?

Upvotes: 1

emt14
emt14

Reputation: 4896

Try to create your own module repository

require:
    - play
    - modules -> crud 1.0

repositories:
  - modules:
      type: local
      artifact: "c:/modules/app1/[module]-[revision]"
      contains:
          - modules -> *

Upvotes: 0

Related Questions