Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 396445 | Differences between
and this patch

Collapse All | Expand All

(-)a/org.eclipse.jdt-feature/pom.xml (+74 lines)
Lines 81-84 Link Here
81
      </plugin>
81
      </plugin>
82
    </plugins>
82
    </plugins>
83
  </build>
83
  </build>
84
85
  <profiles>
86
    <profile>
87
      <id>eclipse-sign</id>
88
      <build>
89
        <plugins>
90
          <plugin>
91
            <groupId>org.eclipse.tycho</groupId>
92
            <artifactId>target-platform-configuration</artifactId>
93
            <version>${tycho.version}</version>
94
            <configuration>
95
              <includePackedArtifacts>true</includePackedArtifacts>
96
            </configuration>
97
          </plugin>
98
          <plugin>
99
            <groupId>org.eclipse.tycho.extras</groupId>
100
            <artifactId>tycho-pack200a-plugin</artifactId>
101
            <version>${tycho-extras.version}</version>
102
            <executions>
103
              <execution>
104
                <id>pack200-normalize</id>
105
                <goals>
106
                  <goal>normalize</goal>
107
                </goals>
108
              </execution>
109
            </executions>
110
          </plugin>
111
          <plugin>
112
            <groupId>org.eclipse.cbi.maven.plugins</groupId>
113
            <artifactId>eclipse-jarsigner-plugin</artifactId>
114
            <version>1.0.1</version>
115
            <executions>
116
              <execution>
117
                <id>sign</id>
118
                <goals>
119
                  <goal>sign</goal>
120
                </goals>
121
              </execution>
122
            </executions>
123
          </plugin>
124
          <plugin>
125
            <groupId>org.eclipse.tycho.extras</groupId>
126
            <artifactId>tycho-pack200b-plugin</artifactId>
127
            <version>${tycho-extras.version}</version>
128
            <executions>
129
              <execution>
130
                <id>pack200-pack</id>
131
                <goals>
132
                  <goal>pack</goal>
133
                </goals>
134
              </execution>
135
            </executions>
136
          </plugin>
137
          <plugin>
138
            <groupId>org.eclipse.tycho</groupId>
139
            <artifactId>tycho-p2-plugin</artifactId>
140
            <version>${tycho.version}</version>
141
            <executions>
142
              <execution>
143
                <id>p2-metadata</id>
144
                <goals>
145
                  <goal>p2-metadata</goal>
146
                </goals>
147
                <phase>package</phase>
148
              </execution>
149
            </executions>
150
            <configuration>
151
              <defaultP2Metadata>false</defaultP2Metadata>
152
            </configuration>
153
          </plugin>
154
        </plugins>
155
      </build>
156
    </profile>
157
  </profiles>
84
</project>
158
</project>

Return to bug 396445