0

我的项目中有一些模式。当我运行 mvn deploy 命令时。它正在将我的模式复制到集中式服务器。

对于模式更改的单元测试,我们必须先将其上传到服务器,然后才能在项目中使用它。在本地设置架构后,我们必须运行 mvn deploy 命令将其上传到本地服务器,因为现有 pom.xml 中没有安装阶段的配置。

为此,我在安装阶段编写了类似的复制执行。下面是插件配置的快照:

     <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
                <executions>
                    <execution>
                        <id>xsd-publish</id>
                        <phase>deploy</phase>
                        <goals>
                            <goal>copy-resources</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${xsd.publish.location}\event</outputDirectory>
                            <resources>
                                <resource>
                                    <directory>src/main/resources</directory>
                                    <includes>
                                        <include>**/*.xsd</include>
                                    </includes>
                                </resource>
                            </resources>
                            <overwrite>true</overwrite>
                        </configuration>
                    </execution>
                    <execution>
                         <id>copy-xsd-local</id>
                         <phase>install</phase>
                          <goals>
                            <goal>copy-resources</goal>
                             </goals>
                              <configuration>
                                <outputDirectory>\\localhost\xsd\event</outputDirectory>
                                <resources>
                                  <resource>
                                    <directory>src/main/resources</directory>
                                    <includes>
                                        <include>**/*.xsd</include>
                                    </includes>
                                  </resource>
                                </resources>
                                <overwrite>true</overwrite>
                              </configuration>
                     </execution>
                </executions>
            </plugin>

当我在本地机器上运行此配置时,它运行良好且符合预期。当我尝试使用 TeamCity 构建项目时,它失败了,因为团队城市有它自己的 servr ,它没有名为 xsd 的文件夹。理想情况下,当我从 Team city 运行它时,我什至不想调用这个插件执行。

有什么建议吗?

4

1 回答 1

0

您可以使用由环境条目激活的不同配置文件

在构建服务器中定义一个 XSDTeamCity 环境条目。然后使用两个配置文件,每个配置文件都有相应的执行。配置文件的激活可能如下所示:

<profiles>
    <profile>
        <id>development_profile</id>
        <activation>
            <property>
                <name>!XSDTeamCity</name>
            </property>
        </activation>
        <!--plugin executions here will run only on dev server-->
    </profile>
    <profile>
        <id>teamcity_profile</id>
        <activation>
            <property>
                <name>XSDTeamCity</name>
            </property>
        </activation>
        <!--plugin executions here will run only on build server-->
    </profile>
</profiles>

还有一件事:您可以轻松地根据 jar 文件中的 XSD 验证您的 XML。为什么需要将此 XSD 复制到任何地方?

于 2014-12-05T21:55:22.077 回答