Split Apache Avro Schemas in several files while having several goals in the avro-maven-pluginCan I split an Apache Avro schema across multiple files?What is meant by plugin goal in Maven speak?Unable to compile and create .avro file from .avsc using MavenUsing Avro schema from different packagemaven-plugin error while building maven projectsFailed to execute goal org.codehous.mojo:exec-maven-plugin:1.4.0:javaHow do I get the avro code generator to use a different type, other than the predefined primitive and complex types in schema?Cannot execute Groovy Maven Plugin as a goalunable to generate source code from avro schema filesHow to define AVRO route in Camel with protocol declaration?How to create object that contains array of string in avro schema?

Is there a reliable way to hide/convey a message in vocal expressions (speech, song,...)

Are there any non-WEB re-implementation of TeX Core in recent years?

Parallel resistance in electric circuits

Could a Scotland-NI bridge break Brexit impasse?

Glue or not to glue boots

How do EVA suits manage water excretion?

Why would "an mule" be used instead of "a mule"?

The Planck constant for mathematicians

Why did they ever make smaller than full-frame sensors?

Does an oscilloscope subtract voltages as phasors?

What is this unknown executable on my boot volume? Is it Malicious?

Why is Kirchoff's loop rule true in a DC circuit?

How can I locate a missing person abroad?

Why island and not light?

Can a corpse possessed by a Dybbuk be turned via Turn Undead?

Relocation error, error code (127) after last updates

Maintenance tips to prolong engine lifespan for short trips

When was the earliest opportunity the Voyager crew had to return to the Alpha quadrant?

Might have gotten a coworker sick, should I address this?

Are scroll bars dead in 2019?

Is English tonal for some words, like "permit"?

A shy person in a queue

What does a Light weapon mean mechanically?

Why does Coq include let-expressions in its core language



Split Apache Avro Schemas in several files while having several goals in the avro-maven-plugin


Can I split an Apache Avro schema across multiple files?What is meant by plugin goal in Maven speak?Unable to compile and create .avro file from .avsc using MavenUsing Avro schema from different packagemaven-plugin error while building maven projectsFailed to execute goal org.codehous.mojo:exec-maven-plugin:1.4.0:javaHow do I get the avro code generator to use a different type, other than the predefined primitive and complex types in schema?Cannot execute Groovy Maven Plugin as a goalunable to generate source code from avro schema filesHow to define AVRO route in Camel with protocol declaration?How to create object that contains array of string in avro schema?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want to split up my avro schema files. For generating the source code, I use the avro-maven-plugin. I followed this post:



Can I split an Apache Avro schema across multiple files?



It works fine, but in my case I want to have different goals and then I get an error message about [ERROR] Failed to execute goal org.apache.avro:avro-maven-plugin:1.8.2:protocol (schemas) on project AvroTestProject: Execution schemas of goal org.apache.avro:avro-maven-plugin:1.8.2:protocol failed: No protocol name specified: ... since my imported file is only a schema and not a protocol.



Here is the snippet of my pom.xml:



 <plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>$avro.version</version>
<executions>
<execution>
<id>schemas</id>
<phase>generate-sources</phase>
<goals>
<goal>schema</goal>
<goal>protocol</goal>
<goal>idl-protocol</goal>
</goals>
<configuration>
<sourceDirectory>$project.basedir/src/avro/</sourceDirectory>
<outputDirectory>$project.basedir/src/</outputDirectory>
<imports>
<import>$project.basedir/src/avro/TestSchema.avsc</import>
</imports>
</configuration>
</execution>
</executions>
</plugin>


Is there a way to declare the import only for a certain goal? Or are there other possibilities to solve this problem?










share|improve this question






























    0















    I want to split up my avro schema files. For generating the source code, I use the avro-maven-plugin. I followed this post:



    Can I split an Apache Avro schema across multiple files?



    It works fine, but in my case I want to have different goals and then I get an error message about [ERROR] Failed to execute goal org.apache.avro:avro-maven-plugin:1.8.2:protocol (schemas) on project AvroTestProject: Execution schemas of goal org.apache.avro:avro-maven-plugin:1.8.2:protocol failed: No protocol name specified: ... since my imported file is only a schema and not a protocol.



    Here is the snippet of my pom.xml:



     <plugin>
    <groupId>org.apache.avro</groupId>
    <artifactId>avro-maven-plugin</artifactId>
    <version>$avro.version</version>
    <executions>
    <execution>
    <id>schemas</id>
    <phase>generate-sources</phase>
    <goals>
    <goal>schema</goal>
    <goal>protocol</goal>
    <goal>idl-protocol</goal>
    </goals>
    <configuration>
    <sourceDirectory>$project.basedir/src/avro/</sourceDirectory>
    <outputDirectory>$project.basedir/src/</outputDirectory>
    <imports>
    <import>$project.basedir/src/avro/TestSchema.avsc</import>
    </imports>
    </configuration>
    </execution>
    </executions>
    </plugin>


    Is there a way to declare the import only for a certain goal? Or are there other possibilities to solve this problem?










    share|improve this question


























      0












      0








      0








      I want to split up my avro schema files. For generating the source code, I use the avro-maven-plugin. I followed this post:



      Can I split an Apache Avro schema across multiple files?



      It works fine, but in my case I want to have different goals and then I get an error message about [ERROR] Failed to execute goal org.apache.avro:avro-maven-plugin:1.8.2:protocol (schemas) on project AvroTestProject: Execution schemas of goal org.apache.avro:avro-maven-plugin:1.8.2:protocol failed: No protocol name specified: ... since my imported file is only a schema and not a protocol.



      Here is the snippet of my pom.xml:



       <plugin>
      <groupId>org.apache.avro</groupId>
      <artifactId>avro-maven-plugin</artifactId>
      <version>$avro.version</version>
      <executions>
      <execution>
      <id>schemas</id>
      <phase>generate-sources</phase>
      <goals>
      <goal>schema</goal>
      <goal>protocol</goal>
      <goal>idl-protocol</goal>
      </goals>
      <configuration>
      <sourceDirectory>$project.basedir/src/avro/</sourceDirectory>
      <outputDirectory>$project.basedir/src/</outputDirectory>
      <imports>
      <import>$project.basedir/src/avro/TestSchema.avsc</import>
      </imports>
      </configuration>
      </execution>
      </executions>
      </plugin>


      Is there a way to declare the import only for a certain goal? Or are there other possibilities to solve this problem?










      share|improve this question














      I want to split up my avro schema files. For generating the source code, I use the avro-maven-plugin. I followed this post:



      Can I split an Apache Avro schema across multiple files?



      It works fine, but in my case I want to have different goals and then I get an error message about [ERROR] Failed to execute goal org.apache.avro:avro-maven-plugin:1.8.2:protocol (schemas) on project AvroTestProject: Execution schemas of goal org.apache.avro:avro-maven-plugin:1.8.2:protocol failed: No protocol name specified: ... since my imported file is only a schema and not a protocol.



      Here is the snippet of my pom.xml:



       <plugin>
      <groupId>org.apache.avro</groupId>
      <artifactId>avro-maven-plugin</artifactId>
      <version>$avro.version</version>
      <executions>
      <execution>
      <id>schemas</id>
      <phase>generate-sources</phase>
      <goals>
      <goal>schema</goal>
      <goal>protocol</goal>
      <goal>idl-protocol</goal>
      </goals>
      <configuration>
      <sourceDirectory>$project.basedir/src/avro/</sourceDirectory>
      <outputDirectory>$project.basedir/src/</outputDirectory>
      <imports>
      <import>$project.basedir/src/avro/TestSchema.avsc</import>
      </imports>
      </configuration>
      </execution>
      </executions>
      </plugin>


      Is there a way to declare the import only for a certain goal? Or are there other possibilities to solve this problem?







      maven avro






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 9:53









      El CattivoEl Cattivo

      65 bronze badges




      65 bronze badges

























          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55394623%2fsplit-apache-avro-schemas-in-several-files-while-having-several-goals-in-the-avr%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55394623%2fsplit-apache-avro-schemas-in-several-files-while-having-several-goals-in-the-avr%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript