Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Now, we are going to excerptINLINE

create our first SU module in our project

...

Using a Maven archetype to create the service unit project

...

From our tutorial project directory, where we already have the parent pom.xml, we run this command to create a service unit project named tutorial-file-su:

...

...

Maven executes the archetype and reports BUILD SUCCESSFUL when it's done.

...

...

What is being generated?

First of all, the archetype creates the project directory, containing:

...

  • used the groupId from the parent pom.xml for our new service unit
  • added a module to the parent pom.xml Code Blockxml xml <modules> <module>tutorial-file-su</module> </modules>

Now, we will have to configure the service unit to provide the services we want.

...

...



...