Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/HHS/ASPR-ms-taskit into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffz committed Dec 6, 2023
2 parents d50149d + 65dcad4 commit 0986e96
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@

<!-- Properties -->
<properties>
<!-- Revision -->
<revision>3.0.0</revision>
<!-- Version -->
<revision>3.1.0</revision>

<!-- basic project properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
8 changes: 7 additions & 1 deletion protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@
</dependencies>

<build>
<resources>
<resource>
<directory>src/main/proto</directory>
</resource>
</resources>
<!--
The plugins here are listed in order of execution to aid in understanding when they will run.
Look up "maven lifecycle phases" and compare those to the phases in each execution for a more
Expand Down Expand Up @@ -88,7 +93,8 @@
</executions>
<configuration>
<protocArtifact>com.google.protobuf:protoc:${protoc.version}:exe:${os.detected.classifier}</protocArtifact>
<protoSourceRoot>${basedir}/src/main/proto/gov/hhs/aspr/ms/taskit/protobuf</protoSourceRoot>
<protoSourceRoot>${basedir}/src/main/proto</protoSourceRoot>
<attachProtoSources>false</attachProtoSources>
</configuration>
</plugin>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
syntax = "proto3";
package gov.hhs.aspr.ms.taskit.protobuf;
package gov.hhs.aspr.ms.taskit.protobuf.testsupport;

option java_multiple_files = true;
option java_package = "gov.hhs.aspr.ms.taskit.protobuf.testsupport.testcomplexobject.input";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
syntax = "proto3";
package gov.hhs.aspr.ms.taskit.protobuf;
package gov.hhs.aspr.ms.taskit.protobuf.testsupport;

option java_multiple_files = true;
option java_package = "gov.hhs.aspr.ms.taskit.protobuf.testsupport.testobject.input";

import "testcomplexobject.proto";
import "gov/hhs/aspr/ms/taskit/protobuf/testsupport/testcomplexobject.proto";

enum TestInputEnum {
TEST1 = 0;
Expand Down

0 comments on commit 0986e96

Please sign in to comment.