From bc335de41876acd8720dce1030a79b3a7b39c3b1 Mon Sep 17 00:00:00 2001 From: Maros Marsalek Date: Wed, 21 Sep 2016 13:51:57 +0200 Subject: HONEYCOMB-209 Configure maven site To produce site for Honeycomb + javadoc asciidoc To build the site: mvn clean install site:attach-descriptor site mvn site:stage -DstagingDirectory=/home/mmarsale/tmp/stage Change-Id: I4246bb09ba02b74a2a9c84ee73f8dba02384fffa Signed-off-by: Maros Marsalek --- infra/Readme.adoc | 67 ------------------------- infra/asciidoc/Readme.adoc | 67 +++++++++++++++++++++++++ infra/cfg-init/asciidoc/Readme.adoc | 3 ++ infra/cfg-init/pom.xml | 1 + infra/data-api/Readme.adoc | 10 ---- infra/data-api/asciidoc/Readme.adoc | 10 ++++ infra/data-api/pom.xml | 1 + infra/data-impl/Readme.adoc | 43 ---------------- infra/data-impl/asciidoc/Readme.adoc | 43 ++++++++++++++++ infra/data-impl/pom.xml | 1 + infra/impl/asciidoc/Readme.adoc | 3 ++ infra/impl/pom.xml | 1 + infra/it/asciidoc/Readme.adoc | 3 ++ infra/it/it-test/asciidoc/Readme.adoc | 3 ++ infra/it/it-test/pom.xml | 15 ++++-- infra/it/pom.xml | 12 +++-- infra/it/test-model/asciidoc/Readme.adoc | 3 ++ infra/it/test-model/pom.xml | 3 +- infra/minimal-distribution/asciidoc/Readme.adoc | 3 ++ infra/minimal-distribution/pom.xml | 6 +-- infra/notification/api/asciidoc/Readme.adoc | 3 ++ infra/notification/api/pom.xml | 1 + infra/notification/asciidoc/Readme.adoc | 3 ++ infra/notification/impl/asciidoc/Readme.adoc | 3 ++ infra/notification/impl/pom.xml | 1 + infra/notification/pom.xml | 13 ++--- infra/pom.xml | 14 +++--- infra/translate-api/Readme.adoc | 9 ---- infra/translate-api/asciidoc/Readme.adoc | 9 ++++ infra/translate-api/pom.xml | 1 + infra/translate-impl/Readme.adoc | 9 ---- infra/translate-impl/asciidoc/Readme.adoc | 9 ++++ infra/translate-impl/pom.xml | 1 + infra/translate-spi/Readme.adoc | 4 -- infra/translate-spi/asciidoc/Readme.adoc | 4 ++ infra/translate-spi/pom.xml | 1 + infra/translate-utils/Readme.adoc | 3 -- infra/translate-utils/asciidoc/Readme.adoc | 3 ++ infra/translate-utils/pom.xml | 1 + 39 files changed, 214 insertions(+), 176 deletions(-) delete mode 100644 infra/Readme.adoc create mode 100644 infra/asciidoc/Readme.adoc create mode 100644 infra/cfg-init/asciidoc/Readme.adoc delete mode 100644 infra/data-api/Readme.adoc create mode 100644 infra/data-api/asciidoc/Readme.adoc delete mode 100644 infra/data-impl/Readme.adoc create mode 100644 infra/data-impl/asciidoc/Readme.adoc create mode 100644 infra/impl/asciidoc/Readme.adoc create mode 100644 infra/it/asciidoc/Readme.adoc create mode 100644 infra/it/it-test/asciidoc/Readme.adoc create mode 100644 infra/it/test-model/asciidoc/Readme.adoc create mode 100644 infra/minimal-distribution/asciidoc/Readme.adoc create mode 100644 infra/notification/api/asciidoc/Readme.adoc create mode 100644 infra/notification/asciidoc/Readme.adoc create mode 100644 infra/notification/impl/asciidoc/Readme.adoc delete mode 100644 infra/translate-api/Readme.adoc create mode 100644 infra/translate-api/asciidoc/Readme.adoc delete mode 100644 infra/translate-impl/Readme.adoc create mode 100644 infra/translate-impl/asciidoc/Readme.adoc delete mode 100644 infra/translate-spi/Readme.adoc create mode 100644 infra/translate-spi/asciidoc/Readme.adoc delete mode 100644 infra/translate-utils/Readme.adoc create mode 100644 infra/translate-utils/asciidoc/Readme.adoc (limited to 'infra') diff --git a/infra/Readme.adoc b/infra/Readme.adoc deleted file mode 100644 index 33e882f8c..000000000 --- a/infra/Readme.adoc +++ /dev/null @@ -1,67 +0,0 @@ -= Honeycomb - -Honeycomb is an VPP agent that runs the same host as a VPP instance -and exposes YANG models via NETCONF and RESTCONF to allow management of that VPP instance. -Honeycomb uses jAPI to communicate with the VPP. - -[ditaa, "hc-architecture"] -.... - /------------------\ - ODL | RESTCONF/NETCONF | - \-+--------------+-/ - | ^ ----------------------|--------------|--------------------- - v | - /------------------\ - | Data layer | - \-+--------------+-/ - | ^ - Honeycomb v | - /-----+--------------+-----\ - | Translation layer | - \----+----------------+----+ - | VPP SPI impl | - +---+------+-----+ - | ^ -------------------------|------|-------------------------- - v | - ++------++ - | jAPI | - VPP /----+--------+------\ - | VPP | - \--------------------/ - -.... - -== NETCONF/RESTCONF layer - -NETCONF and RESTCONF support is provided by ODL (Honeycomb is an ODL application). -In the future we plan to minimize ODL dependencies or completely remove karaf. - -Transaction functionality is provided by the data layer. - -== Data layer - -Models CONFIG data store as a DataTree. - -OPERATIONAL data store reads are passed directly to the translation layer. - -Provides transaction functionality for NETCONF/RESTCONF layer. - - -== Translation layer - -Extensible API for translation between Binding Aware data and actual device data. -Consists of readers and writers responsible for communication with the device. - -Provides registry of readers and writers for the data layer. - -== Supported features - -List of supported requests for RESTCONF northbound interface can be found in -postman_rest_collection.json within the codebase. -It is a POSTMAN compatible collection and can be imported into POSTMAN application. - - - - diff --git a/infra/asciidoc/Readme.adoc b/infra/asciidoc/Readme.adoc new file mode 100644 index 000000000..33e882f8c --- /dev/null +++ b/infra/asciidoc/Readme.adoc @@ -0,0 +1,67 @@ += Honeycomb + +Honeycomb is an VPP agent that runs the same host as a VPP instance +and exposes YANG models via NETCONF and RESTCONF to allow management of that VPP instance. +Honeycomb uses jAPI to communicate with the VPP. + +[ditaa, "hc-architecture"] +.... + /------------------\ + ODL | RESTCONF/NETCONF | + \-+--------------+-/ + | ^ +---------------------|--------------|--------------------- + v | + /------------------\ + | Data layer | + \-+--------------+-/ + | ^ + Honeycomb v | + /-----+--------------+-----\ + | Translation layer | + \----+----------------+----+ + | VPP SPI impl | + +---+------+-----+ + | ^ +------------------------|------|-------------------------- + v | + ++------++ + | jAPI | + VPP /----+--------+------\ + | VPP | + \--------------------/ + +.... + +== NETCONF/RESTCONF layer + +NETCONF and RESTCONF support is provided by ODL (Honeycomb is an ODL application). +In the future we plan to minimize ODL dependencies or completely remove karaf. + +Transaction functionality is provided by the data layer. + +== Data layer + +Models CONFIG data store as a DataTree. + +OPERATIONAL data store reads are passed directly to the translation layer. + +Provides transaction functionality for NETCONF/RESTCONF layer. + + +== Translation layer + +Extensible API for translation between Binding Aware data and actual device data. +Consists of readers and writers responsible for communication with the device. + +Provides registry of readers and writers for the data layer. + +== Supported features + +List of supported requests for RESTCONF northbound interface can be found in +postman_rest_collection.json within the codebase. +It is a POSTMAN compatible collection and can be imported into POSTMAN application. + + + + diff --git a/infra/cfg-init/asciidoc/Readme.adoc b/infra/cfg-init/asciidoc/Readme.adoc new file mode 100644 index 000000000..ad514b960 --- /dev/null +++ b/infra/cfg-init/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += cfg-init + +Overview of cfg-init \ No newline at end of file diff --git a/infra/cfg-init/pom.xml b/infra/cfg-init/pom.xml index 1a0098dd0..605d7c208 100644 --- a/infra/cfg-init/pom.xml +++ b/infra/cfg-init/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb cfg-init + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/data-api/Readme.adoc b/infra/data-api/Readme.adoc deleted file mode 100644 index a13c5094f..000000000 --- a/infra/data-api/Readme.adoc +++ /dev/null @@ -1,10 +0,0 @@ -= Honeycomb Data layer. API - -Provides data tree abstraction for data store modeling. -ModifiableDataTree can be used to model CONFIG data store. -ReadableDataTree can be used to model OPERATIONAL data store. - - - - - diff --git a/infra/data-api/asciidoc/Readme.adoc b/infra/data-api/asciidoc/Readme.adoc new file mode 100644 index 000000000..a13c5094f --- /dev/null +++ b/infra/data-api/asciidoc/Readme.adoc @@ -0,0 +1,10 @@ += Honeycomb Data layer. API + +Provides data tree abstraction for data store modeling. +ModifiableDataTree can be used to model CONFIG data store. +ReadableDataTree can be used to model OPERATIONAL data store. + + + + + diff --git a/infra/data-api/pom.xml b/infra/data-api/pom.xml index c2d8465a3..eb615a8d1 100644 --- a/infra/data-api/pom.xml +++ b/infra/data-api/pom.xml @@ -26,6 +26,7 @@ 4.0.0 io.fd.honeycomb data-api + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/data-impl/Readme.adoc b/infra/data-impl/Readme.adoc deleted file mode 100644 index 61b2653b3..000000000 --- a/infra/data-impl/Readme.adoc +++ /dev/null @@ -1,43 +0,0 @@ -= Honeycomb Data layer. Implementation - -Models CONFIG data store as a DataTree. - -Every read transaction reads directly from the DataTree. -Every write transaction is validated, then passed to the translation layer. -After successful update, config data tree is updated. - -OPERATIONAL data store reads are passed directly to the translation layer. - -Data transaction functionality for higher layers (i.e NETCONF/RESTCONF layer) is provided by DataBroker. - -[ditaa, "data-layer-architecture"] -.... - /------------------\ - | RESTCONF/NETCONF | - \--------+---------/ - | -----------------------------|------------------------------------ - v - /------------------\ - | DataBroker | - \-+--------------+-/ - | | - | read | read/write - Honeycomb v v - data layer /------+------\ /--+--------\ /----------\ - | | | | | | - | Operational | | Config +------>+ DataTree + - | DataTree | | DataTree | | | - | | | | \----------/ - \------+------/ \--+--------/ - | | ----------------------|--------------|---------------------------- - v v - /-----+--------------+-----\ - | Translation layer | - \--------------------------/ -.... - - - - diff --git a/infra/data-impl/asciidoc/Readme.adoc b/infra/data-impl/asciidoc/Readme.adoc new file mode 100644 index 000000000..61b2653b3 --- /dev/null +++ b/infra/data-impl/asciidoc/Readme.adoc @@ -0,0 +1,43 @@ += Honeycomb Data layer. Implementation + +Models CONFIG data store as a DataTree. + +Every read transaction reads directly from the DataTree. +Every write transaction is validated, then passed to the translation layer. +After successful update, config data tree is updated. + +OPERATIONAL data store reads are passed directly to the translation layer. + +Data transaction functionality for higher layers (i.e NETCONF/RESTCONF layer) is provided by DataBroker. + +[ditaa, "data-layer-architecture"] +.... + /------------------\ + | RESTCONF/NETCONF | + \--------+---------/ + | +----------------------------|------------------------------------ + v + /------------------\ + | DataBroker | + \-+--------------+-/ + | | + | read | read/write + Honeycomb v v + data layer /------+------\ /--+--------\ /----------\ + | | | | | | + | Operational | | Config +------>+ DataTree + + | DataTree | | DataTree | | | + | | | | \----------/ + \------+------/ \--+--------/ + | | +---------------------|--------------|---------------------------- + v v + /-----+--------------+-----\ + | Translation layer | + \--------------------------/ +.... + + + + diff --git a/infra/data-impl/pom.xml b/infra/data-impl/pom.xml index 8b4e29918..2d6f9fd61 100644 --- a/infra/data-impl/pom.xml +++ b/infra/data-impl/pom.xml @@ -26,6 +26,7 @@ 4.0.0 io.fd.honeycomb data-impl + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/impl/asciidoc/Readme.adoc b/infra/impl/asciidoc/Readme.adoc new file mode 100644 index 000000000..d629eaf0b --- /dev/null +++ b/infra/impl/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += honeycomb-impl + +Overview of honeycomb-impl \ No newline at end of file diff --git a/infra/impl/pom.xml b/infra/impl/pom.xml index 572a079bf..feb0cbc4d 100644 --- a/infra/impl/pom.xml +++ b/infra/impl/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb + ${project.artifactId} honeycomb-impl 1.16.12-SNAPSHOT bundle diff --git a/infra/it/asciidoc/Readme.adoc b/infra/it/asciidoc/Readme.adoc new file mode 100644 index 000000000..4a8ef58e1 --- /dev/null +++ b/infra/it/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += honeycomb-it-aggregator + +Overview of honeycomb-it-aggregator \ No newline at end of file diff --git a/infra/it/it-test/asciidoc/Readme.adoc b/infra/it/it-test/asciidoc/Readme.adoc new file mode 100644 index 000000000..b22db5807 --- /dev/null +++ b/infra/it/it-test/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += honeycomb-it-test + +Overview of honeycomb-it-test \ No newline at end of file diff --git a/infra/it/it-test/pom.xml b/infra/it/it-test/pom.xml index bd2f9c0d6..2bbdff1a1 100644 --- a/infra/it/it-test/pom.xml +++ b/infra/it/it-test/pom.xml @@ -24,20 +24,25 @@ 4.0.0 - io.fd.honeycomb + io.fd.honeycomb.it honeycomb-it-test + ${project.artifactId} 1.16.12-SNAPSHOT + + 1.16.12-SNAPSHOT + + - ${project.groupId} + io.fd.honeycomb data-impl - ${project.version} + ${hc.infra.version} - ${project.groupId} + io.fd.honeycomb translate-impl - ${project.version} + ${hc.infra.version} org.opendaylight.controller diff --git a/infra/it/pom.xml b/infra/it/pom.xml index 8ebbd7e21..5e1173413 100644 --- a/infra/it/pom.xml +++ b/infra/it/pom.xml @@ -15,15 +15,19 @@ --> - io.fd.honeycomb.common + + io.fd.honeycomb.common + honeycomb-parent + 1.16.12-SNAPSHOT + ../../common/honeycomb-parent + + + io.fd.honeycomb.it honeycomb-it-aggregator 1.16.12-SNAPSHOT honeycomb-it pom 4.0.0 - - 3.1.1 - test-model diff --git a/infra/it/test-model/asciidoc/Readme.adoc b/infra/it/test-model/asciidoc/Readme.adoc new file mode 100644 index 000000000..a1a3715ea --- /dev/null +++ b/infra/it/test-model/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += honeycomb-test-model + +Overview of honeycomb-test-model \ No newline at end of file diff --git a/infra/it/test-model/pom.xml b/infra/it/test-model/pom.xml index a2f47aa3c..909c4866f 100644 --- a/infra/it/test-model/pom.xml +++ b/infra/it/test-model/pom.xml @@ -22,8 +22,9 @@ 4.0.0 - io.fd.honeycomb + io.fd.honeycomb.it honeycomb-test-model + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/minimal-distribution/asciidoc/Readme.adoc b/infra/minimal-distribution/asciidoc/Readme.adoc new file mode 100644 index 000000000..1da86caab --- /dev/null +++ b/infra/minimal-distribution/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += minimal-distribution + +Overview of minimal-distribution \ No newline at end of file diff --git a/infra/minimal-distribution/pom.xml b/infra/minimal-distribution/pom.xml index 82f1cd1ad..6e935b09b 100644 --- a/infra/minimal-distribution/pom.xml +++ b/infra/minimal-distribution/pom.xml @@ -25,12 +25,8 @@ 4.0.0 io.fd.honeycomb minimal-distribution - 1.16.12-SNAPSHOT - ${project.artifactId} - - 3.1.1 - + 1.16.12-SNAPSHOT io.fd.honeycomb.infra.distro.Main diff --git a/infra/notification/api/asciidoc/Readme.adoc b/infra/notification/api/asciidoc/Readme.adoc new file mode 100644 index 000000000..676a76b54 --- /dev/null +++ b/infra/notification/api/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += notification-api + +Overview of notification-api \ No newline at end of file diff --git a/infra/notification/api/pom.xml b/infra/notification/api/pom.xml index 0220dc1fd..8aa4b6b70 100644 --- a/infra/notification/api/pom.xml +++ b/infra/notification/api/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb notification-api + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/notification/asciidoc/Readme.adoc b/infra/notification/asciidoc/Readme.adoc new file mode 100644 index 000000000..483018110 --- /dev/null +++ b/infra/notification/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += notification-aggregator + +Overview of notification-aggregator \ No newline at end of file diff --git a/infra/notification/impl/asciidoc/Readme.adoc b/infra/notification/impl/asciidoc/Readme.adoc new file mode 100644 index 000000000..684cf3fe5 --- /dev/null +++ b/infra/notification/impl/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += notification-impl + +Overview of notification-impl \ No newline at end of file diff --git a/infra/notification/impl/pom.xml b/infra/notification/impl/pom.xml index f289f75d1..4767fc958 100644 --- a/infra/notification/impl/pom.xml +++ b/infra/notification/impl/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb notification-impl + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/notification/pom.xml b/infra/notification/pom.xml index 6d4c15fa0..e8e9e5cc5 100644 --- a/infra/notification/pom.xml +++ b/infra/notification/pom.xml @@ -16,21 +16,18 @@ - org.opendaylight.odlparent - odlparent - 1.6.2-Beryllium-SR2 - + io.fd.honeycomb.common + honeycomb-parent + 1.16.12-SNAPSHOT + ../../common/honeycomb-parent io.fd.honeycomb notification-aggregator 1.16.12-SNAPSHOT - notification + ${project.artifactId} pom 4.0.0 - - 3.1.1 - api diff --git a/infra/pom.xml b/infra/pom.xml index 37ab3b42b..b21fe44ef 100644 --- a/infra/pom.xml +++ b/infra/pom.xml @@ -16,21 +16,19 @@ - org.opendaylight.odlparent - odlparent - 1.6.2-Beryllium-SR2 - + io.fd.honeycomb.common + honeycomb-parent + 1.16.12-SNAPSHOT + ../common/honeycomb-parent io.fd.honeycomb infra-aggregator 1.16.12-SNAPSHOT - infra + ${project.artifactId} pom 4.0.0 - - 3.1.1 - + Aggregator for Honeycomb core (aka infrastructure/framework) data-api diff --git a/infra/translate-api/Readme.adoc b/infra/translate-api/Readme.adoc deleted file mode 100644 index 9e208744a..000000000 --- a/infra/translate-api/Readme.adoc +++ /dev/null @@ -1,9 +0,0 @@ -= Honeycomb translation layer API - -Extensible API for translation between Binding Aware data and actual device data. -Consists of readers and writers responsible for communication with the device. - -Provides registry of readers and writers for the data layer. -For every supported YANG model there should be at least one reader and writer registered. -Readers and writers form two tree structures matching corresponding YANG models. -Readers and writers can be attached to any non-leaf YANG node. \ No newline at end of file diff --git a/infra/translate-api/asciidoc/Readme.adoc b/infra/translate-api/asciidoc/Readme.adoc new file mode 100644 index 000000000..9e208744a --- /dev/null +++ b/infra/translate-api/asciidoc/Readme.adoc @@ -0,0 +1,9 @@ += Honeycomb translation layer API + +Extensible API for translation between Binding Aware data and actual device data. +Consists of readers and writers responsible for communication with the device. + +Provides registry of readers and writers for the data layer. +For every supported YANG model there should be at least one reader and writer registered. +Readers and writers form two tree structures matching corresponding YANG models. +Readers and writers can be attached to any non-leaf YANG node. \ No newline at end of file diff --git a/infra/translate-api/pom.xml b/infra/translate-api/pom.xml index 594057284..374ed6c3e 100644 --- a/infra/translate-api/pom.xml +++ b/infra/translate-api/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb translate-api + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/translate-impl/Readme.adoc b/infra/translate-impl/Readme.adoc deleted file mode 100644 index 1e5c63604..000000000 --- a/infra/translate-impl/Readme.adoc +++ /dev/null @@ -1,9 +0,0 @@ -= Honeycomb translation layer implementation - -Provides composite implementations of child, list and root readers/writers. - -Root readers/writers can be used to provide data translation at root node level. -List readers/writers help with data translation for nodes modeled as YANG lists. -Child readers/writers can be used to provide data translation for non-leaf nodes. - -Readers and writers can be easily extended using customizers defined in the translate-spi module. \ No newline at end of file diff --git a/infra/translate-impl/asciidoc/Readme.adoc b/infra/translate-impl/asciidoc/Readme.adoc new file mode 100644 index 000000000..1e5c63604 --- /dev/null +++ b/infra/translate-impl/asciidoc/Readme.adoc @@ -0,0 +1,9 @@ += Honeycomb translation layer implementation + +Provides composite implementations of child, list and root readers/writers. + +Root readers/writers can be used to provide data translation at root node level. +List readers/writers help with data translation for nodes modeled as YANG lists. +Child readers/writers can be used to provide data translation for non-leaf nodes. + +Readers and writers can be easily extended using customizers defined in the translate-spi module. \ No newline at end of file diff --git a/infra/translate-impl/pom.xml b/infra/translate-impl/pom.xml index 2a9280b87..7aff0a00f 100644 --- a/infra/translate-impl/pom.xml +++ b/infra/translate-impl/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb translate-impl + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/translate-spi/Readme.adoc b/infra/translate-spi/Readme.adoc deleted file mode 100644 index 755538c07..000000000 --- a/infra/translate-spi/Readme.adoc +++ /dev/null @@ -1,4 +0,0 @@ -= Honeycomb translation layer SPI - -Provides root, child and list customizer interfaces for extending readers/writers. -Customizers can be used to implement actual data reads and writes. \ No newline at end of file diff --git a/infra/translate-spi/asciidoc/Readme.adoc b/infra/translate-spi/asciidoc/Readme.adoc new file mode 100644 index 000000000..755538c07 --- /dev/null +++ b/infra/translate-spi/asciidoc/Readme.adoc @@ -0,0 +1,4 @@ += Honeycomb translation layer SPI + +Provides root, child and list customizer interfaces for extending readers/writers. +Customizers can be used to implement actual data reads and writes. \ No newline at end of file diff --git a/infra/translate-spi/pom.xml b/infra/translate-spi/pom.xml index 8fb2cd1cb..0f630d065 100644 --- a/infra/translate-spi/pom.xml +++ b/infra/translate-spi/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb translate-spi + ${project.artifactId} 1.16.12-SNAPSHOT bundle diff --git a/infra/translate-utils/Readme.adoc b/infra/translate-utils/Readme.adoc deleted file mode 100644 index 17ebb6c6a..000000000 --- a/infra/translate-utils/Readme.adoc +++ /dev/null @@ -1,3 +0,0 @@ -= Honeycomb translation layer utils - -Provides utility classes useful in translation layer implementation. \ No newline at end of file diff --git a/infra/translate-utils/asciidoc/Readme.adoc b/infra/translate-utils/asciidoc/Readme.adoc new file mode 100644 index 000000000..569fc713c --- /dev/null +++ b/infra/translate-utils/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += translate-utils + +Overview of translate-utils \ No newline at end of file diff --git a/infra/translate-utils/pom.xml b/infra/translate-utils/pom.xml index d05f6b7ba..ea1ece1de 100644 --- a/infra/translate-utils/pom.xml +++ b/infra/translate-utils/pom.xml @@ -25,6 +25,7 @@ 4.0.0 io.fd.honeycomb translate-utils + ${project.artifactId} 1.16.12-SNAPSHOT bundle -- cgit 1.2.3-korg